RosettaCodeData/Task/Singleton/Elena/singleton-2.elena

9 lines
90 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
class Singleton
2016-12-05 22:15:40 +01:00
{
2019-09-12 10:33:56 -07:00
object theField;
2016-12-05 22:15:40 +01:00
// ...
}
2019-09-12 10:33:56 -07:00
static singleton = new Singleton();