Skip to content

Instantly share code, notes, and snippets.

@smiler
Created February 14, 2013 10:24
Show Gist options
  • Save smiler/4951836 to your computer and use it in GitHub Desktop.
Save smiler/4951836 to your computer and use it in GitHub Desktop.
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