Guest User

Untitled

a guest
Apr 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 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.method("H");
  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 method(int i) {
  29. String s = Integer.toString(i);
  30. }
  31.  
  32. }
Add Comment
Please, Sign In to add comment