mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 06:08:41 +01:00
8 lines
110 B
Plaintext
8 lines
110 B
Plaintext
import "cthulu" for Cthulu
|
|
|
|
class Lovecraft {
|
|
say { (new Cthulu).message }
|
|
}
|
|
|
|
IO.print((new Lovecraft).say)
|