Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /* code/HelloWorld/HelloWorld.java */
  2. /**
  3. * Display "Hello, world!" and end the program.
  4. * @author: Matthew Fluet
  5. * @author: Ben K Steele
  6. */
  7. public class HelloWorld {
  8. /**
  9. * @param args args are unused
  10. */
  11. public static void main( String[] args ) {
  12. System.out.println( "Hello, world!" );
  13. return; }
  14. } // end class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement