Created
August 19, 2010 05:31
-
-
Save rofl0r/537125 to your computer and use it in GitHub Desktop.
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
using Posix; | |
[Compact] | |
public class Test { | |
public void test() { | |
stdout.puts ("foo\n"); | |
} | |
} | |
static int main(){ | |
var t = new Test(); | |
t.test(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment