How to Write Hello World in Java Programming Language
This is the source code for displaying "Hello World" text in Java:
class HelloWorld{
public static void main(String args[]){
System.out.println("Hello World from Java");
}
}
The output:
ShadowOfBdg© - All rights reserved.
No comments:
Post a Comment