Advertisement
DarkMaster22

Hello World Java

Jul 1st, 2014
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class Main{
  2.  
  3. public static void func(){
  4. System.out.print("Hello ");
  5. }
  6.  
  7.  
  8. public static void main(String[] args){
  9. func(); //static call (no objects -> no object oriented)
  10. System.out.println("World!");
  11. }
  12.  
  13.  
  14.  
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement