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