Skip to content

Instantly share code, notes, and snippets.

@rofl0r
Created August 19, 2010 05:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rofl0r/537125 to your computer and use it in GitHub Desktop.
Save rofl0r/537125 to your computer and use it in GitHub Desktop.
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