Skip to content

Instantly share code, notes, and snippets.

@zaydek-old
Created August 8, 2017 21:02
Show Gist options
  • Save zaydek-old/f94850bcdba51127a38fabc796c79c65 to your computer and use it in GitHub Desktop.
Save zaydek-old/f94850bcdba51127a38fabc796c79c65 to your computer and use it in GitHub Desktop.
identical imports
import std.stdio;
void main()
{
writeln("hello, world!");
}
import std.stdio : writeln;
void main()
{
writeln("hello, world!");
}
@zaydek-old
Copy link
Author

screen shot 2017-08-09 at 4 02 09 am

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment