Created
April 20, 2014 22:55
-
-
Save mplacona/11127334 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
void main() { | |
//Get the only object available | |
SingleObject object = SingleObject.getInstance(); | |
// this would cause a compilation error | |
//SingleObject singleObject = new SingleObject(); | |
//show the message | |
object.showMessage(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment