Skip to content

Instantly share code, notes, and snippets.

@DanisHack
Last active October 17, 2019 00:04
Show Gist options
  • Save DanisHack/6b046eab8d223bf47d39463d6051a7c8 to your computer and use it in GitHub Desktop.
Save DanisHack/6b046eab8d223bf47d39463d6051a7c8 to your computer and use it in GitHub Desktop.
Java sample code
class Greeting {
public void Greet() {
System.out.println("Hello from Educative!");
}
}
class HelloWorld {
public static void main( String args[] ) {
Greeting obj = new Greeting();
obj.Greet();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment