/**
* Write a short description of what the class does (one line)
* @Zman51 (your name)
* @1 (a version number or a date)
*/
import java.util.*;
public class HelloWorld//class header
{
//every open bracket need a closed bracket
//main method below is ignition of a program (not every class has one)
public static void main(String[] args) {
System.out.println ("Hello World");
}
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.