Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public class A {
  2. static String me = "a";
  3.  
  4. static A howIm(){
  5. System.out.print("I'm ");
  6. return null;
  7. }
  8.  
  9. public static void main(String[] args) {
  10. System.out.println(howIm().me);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement