Guest User

Untitled

a guest
Jan 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. public class Hello {
  2.  
  3. public static void main(String args[]) {//This will only be used once, in the main class where the real thing activates
  4. /*
  5. * System, represents the console
  6. * out, represents the meaning for showing it in the console
  7. * println, represents the 2 words Print Line, show on the line
  8. * (), means to start something
  9. * "", add a message
  10. * ;, is required in java when ending things*Not all the time
  11. * String, indicates a variable of text, holds information(text such as this) in a variable to be used in a method or something much simpler
  12. * Variable, when making a new Variable or Integer you need to give it a name, String t
  13. */
  14. String t = "Hello World!!";
  15. System.out.println(t);
  16.  
  17. }
  18.  
  19. }
Add Comment
Please, Sign In to add comment