Skip to content

Instantly share code, notes, and snippets.

@gunungloli666
Created January 18, 2014 18:32
package fjr.test.testgeneric;
public class A {
String name;
public A(String name){
this.name = name;
}
public String toString(){
return name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment