Skip to content

Instantly share code, notes, and snippets.

@aniketmlk6
Created June 28, 2021 17:57
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 aniketmlk6/a5420fea066d9c0382ddb7667c9c55dc to your computer and use it in GitHub Desktop.
Save aniketmlk6/a5420fea066d9c0382ddb7667c9c55dc to your computer and use it in GitHub Desktop.
class A {
static void simple_Method() {
System.out.println("I am a simple method");
}
}
public class Main {
public static void main(String[] args) {
A.simple_Method();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment