Skip to content

Instantly share code, notes, and snippets.

Created April 24, 2013 18:00
Show Gist options
  • Save anonymous/5454145 to your computer and use it in GitHub Desktop.
Save anonymous/5454145 to your computer and use it in GitHub Desktop.
class HelloTestObject
{
HelloTestObject( String st )
void speak()
{
System.out.println( st );
}
}
class deleteme
{
public static void main (String[] args)
{
HelloTestObject a=new HelloTestObject("printme!");
a.speak();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment