Created
February 14, 2013 10:24
-
-
Save smiler/4951836 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void loller(Kossa lol) { | |
lol = new Kossa("muu"); | |
} | |
public static void main(String[] args) { | |
Kossa hehu = new Kossa("moo"); | |
System.out.println(hehu); | |
loller(hehu); | |
System.out.println(hehu); | |
} | |
/* | |
"moo" | |
"moo" | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment