4 lines
95 B
Nim
4 lines
95 B
Nim
type Singleton = object # Singleton* would export
|
|
foo*: int
|
|
|
|
var single* = Singleton(foo: 0)
|