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

7 lines
124 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
global function get_singleton()
if chk==NULL then
chk = new("singleton")
end if
return chk
end function