Skip to content

Instantly share code, notes, and snippets.

@zaydek-old
Created August 8, 2017 20:59
Show Gist options
  • Save zaydek-old/d6e5986d1c2480497477e6b178deca3e to your computer and use it in GitHub Desktop.
Save zaydek-old/d6e5986d1c2480497477e6b178deca3e to your computer and use it in GitHub Desktop.
my solution
void a()
{
import std.stdio;
writeln("hello, world!");
}
void main()
{
a();
}
/+
a2.d
+/
void a()
{
import std.stdio;
writeln("hello, world!");
}
/+
b2.d
+/
void main()
{
a();
}
@zaydek-old
Copy link
Author

hello, world! as expected

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