Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Class A{
  2.     public static void func1() {
  3.         System.out.println("This is Function #1");
  4.     }
  5.  
  6.     public static void func2() {
  7.         System.out.println("This is Function #2");
  8.     }
  9.  
  10.     public static void main(String[] args) {
  11.         System.out.println("Hello FXP");
  12.         func1();
  13.         func2();
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement