Last active
August 29, 2015 14:01
-
-
Save st98/1afeccfb16c17f8f5f1f to your computer and use it in GitHub Desktop.
IL で書く Hello, world!
This file contains 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
.assembly extern mscorlib {} | |
.assembly Hello {} | |
.method static void Main() cil managed { | |
.entrypoint | |
.maxstack 1 | |
ldstr "Hello, world!" | |
call void [mscorlib]System.Console::WriteLine(string) | |
ret | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment