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