...
| Code Block |
|---|
/*
Hey, hey, what do you say?
*/
import Useful.Attributes
[Singleton]
class SingletonExample:
[property(Variable)]
_var as string
def constructor():
Variable = "Hey, hey, what do you say?"
print SingletonExample.Instance.Variable
|
...
