RosettaCodeData/Task/Singleton/Eiffel/singleton-2.e

11 lines
134 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
frozen class
SINGLETON_ACCESS
feature
singleton: SINGLETON
once ("PROCESS")
create Result
ensure
Result /= Void
end
end