-
-
Save zaydek-old/d6e5986d1c2480497477e6b178deca3e to your computer and use it in GitHub Desktop.
my solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void a() | |
{ | |
import std.stdio; | |
writeln("hello, world!"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() | |
{ | |
a(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/+ | |
a2.d | |
+/ | |
void a() | |
{ | |
import std.stdio; | |
writeln("hello, world!"); | |
} | |
/+ | |
b2.d | |
+/ | |
void main() | |
{ | |
a(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hello, world!
as expected