RosettaCodeData/Task/Singleton/Phix/singleton-2.phix
2023-07-01 13:44:08 -04:00

6 lines
124 B
Text

global function get_singleton()
if chk==NULL then
chk = new("singleton")
end if
return chk
end function