2015-02-18 11:39:31 -05:00
|
|
|
import "cthulu" for Cthulu
|
|
|
|
|
|
|
|
|
|
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-07-10 09:18:22 -07:00
|
|
|
IO.print(Lovecraft.new().say())
|