mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 14:18:42 +01:00
9 lines
135 B
Plaintext
9 lines
135 B
Plaintext
import "cthulu" for Cthulu
|
|
|
|
class Lovecraft {
|
|
construct new() {}
|
|
say() { Cthulu.new().message }
|
|
}
|
|
|
|
IO.print(Lovecraft.new().say())
|