Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Main{
- public static void func(){
- System.out.print("Hello ");
- }
- public static void main(String[] args){
- func(); //static call (no objects -> no object oriented)
- System.out.println("World!");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement