Advertisement
JackProehl

Programming Tips

May 2nd, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. // VARIABLES
  2. // type varialName;
  3. // variableName = value;
  4.  
  5. // type variableName = value;
  6.  
  7. // VARIABLE TYPES:
  8. /*
  9. * int = -2147483647 to 2147483647
  10. * long = -infinity to infinity
  11. * short = -32,767 to 32,767
  12. * byte = 0 to 255
  13. * double 0.00
  14. * float = 0.0
  15. * char = '&'
  16. * String = "any string of characters"
  17. * boolean = true or false
  18. */
  19.  
  20. // METHODS
  21. // modifier methodName(input) {
  22. // do stuff;
  23. // }
  24.  
  25. // RUN A METHOD
  26. // methodName(inputs);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement