Skip to content

Instantly share code, notes, and snippets.

@gyng
Created December 4, 2011 16:57
Show Gist options
  • Save gyng/1430674 to your computer and use it in GitHub Desktop.
Save gyng/1430674 to your computer and use it in GitHub Desktop.
javasux
#include <stdio.h>
int main(void)
{
printf("Hello world!");
return 0;
}
///////////////////
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
//////////////////
print("Hello world!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment