Skip to content

Instantly share code, notes, and snippets.

View d3xvn's full-sized avatar
:octocat:
Fluttering away the hours

Deven Joshi d3xvn

:octocat:
Fluttering away the hours
View GitHub Profile
class DemoClass {
//public function
void printSomething(){
print('Something');
}
//Notice no access specifier (public, private) or static keyword
main() {
//Top-level function
print('Hello World');
}
print("Hello World!")
@d3xvn
d3xvn / HelloWorld.java
Last active April 23, 2018 08:15
HelloWorld Java
class Main{
public static void main(String... args) {
System.out.println("Hello World!");
}
}