Last active
December 23, 2015 17:09
-
-
Save yutopp/6666992 to your computer and use it in GitHub Desktop.
bun
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
def main(): int | |
{ | |
print( "hello, bunchou lang!!!" ); | |
test(); | |
return 0; | |
} | |
def test(): void | |
{ | |
extern_print_string( "bunchou" ); | |
} | |
extern def extern_print_string( :string ): void "put_string"; | |
// comment | |
;/*empty statements*/;;; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment