Files
wren/example/import_module/lovecraft.wren

9 lines
141 B
Plaintext
Raw Normal View History

import "./cthulu" for Cthulu
class Lovecraft {
construct new() {}
say() { Cthulu.new().message }
}
System.print(Lovecraft.new().say())