Guest User

Untitled

a guest
Apr 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. LOLZOR.JAVA
  2. ============
  3.  
  4. package tc.net.expertmac2.lol;
  5. import tc.net.expertmac2.lol.test;
  6.  
  7. public class lolzor {
  8.  
  9.     public void lolol() {
  10.         test t = new test();
  11.         test.saySomething("Hai!");
  12.     }
  13.  
  14.     public static void main(String args) {
  15.         lolzor lz = new lolzor();
  16.         lz.lolol();
  17.     }
  18.  
  19. }
  20.  
  21. TEST.JAVA
  22. ===========
  23.  
  24. package tc.net.expertmac2.lol;
  25.  
  26. public class test {
  27.  
  28.     public void saySomething(String s) {
  29.         System.out.println(s);
  30.     }
  31.  
  32.  
  33. }
Add Comment
Please, Sign In to add comment