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

11 lines
134 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
frozen class
SINGLETON_ACCESS
feature
singleton: SINGLETON
once ("PROCESS")
create Result
ensure
Result /= Void
end
end