7 lines
94 B
Text
7 lines
94 B
Text
module Singleton {
|
|
speak() {
|
|
println("I am a singleton");
|
|
}
|
|
}
|
|
|
|
Singleton.speak();
|