Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

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 nikhilrajsingh/8b1ca909fcfd6cf2b38359113a003125 to your computer and use it in GitHub Desktop.
Save nikhilrajsingh/8b1ca909fcfd6cf2b38359113a003125 to your computer and use it in GitHub Desktop.
task 1-Create a "Hello,World!" program in Java
//created by Nikhil Raj Singh
//section K
// task 1-Create a "Hello,World!" program in Java
class HelloWorld{
void task1(){
System.out.println("Hello,World! ");
}
}
class Run{
public static void main(String[] args) {
HelloWorld run = new HelloWorld();
run.task1();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment