Files
wren/example/import_module/lovecraft.wren
T

9 lines
141 B
Plaintext
Raw Normal View History

2018-03-24 11:10:36 -07:00
import "./cthulu" for Cthulu
2015-02-18 11:39:31 -05:00
class Lovecraft {
2015-09-01 08:16:04 -07:00
construct new() {}
2015-07-10 09:18:22 -07:00
say() { Cthulu.new().message }
2015-02-18 11:39:31 -05:00
}
2015-09-15 07:46:09 -07:00
System.print(Lovecraft.new().say())