andari3107

Comment

Feb 6th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. /**
  2. * Program HelloWorld mengimplementasikan aplikasi itu
  3. * cukup menampilkan "Hello World!" ke output standar.
  4. *
  5. * @author Andari
  6. */
  7. public class Comment {
  8.  
  9.    public static void main(String[] args) {
  10.       // Prints Hello, World! on standard output.
  11.       System.out.println("Hello World!");
  12.    }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment