6 lines
125 B
Text
6 lines
125 B
Text
struct IAmaSingleton end
|
|
|
|
x = IAmaSingleton()
|
|
y = IAmaSingleton()
|
|
|
|
println("x == y is $(x == y) and x === y is $(x === y).")
|