RosettaCodeData/Task/Singleton/Phix/singleton-2.phix

7 lines
124 B
Plaintext

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