Skip to content

Instantly share code, notes, and snippets.

@st98
Last active August 29, 2015 14:01
Show Gist options
  • Save st98/1afeccfb16c17f8f5f1f to your computer and use it in GitHub Desktop.
Save st98/1afeccfb16c17f8f5f1f to your computer and use it in GitHub Desktop.
IL で書く Hello, world!
.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