9 lines
90 B
Text
9 lines
90 B
Text
|
|
class Singleton
|
||
|
|
{
|
||
|
|
object theField;
|
||
|
|
|
||
|
|
// ...
|
||
|
|
}
|
||
|
|
|
||
|
|
static singleton = new Singleton();
|