2015-02-18 16:39:31 +00:00
|
|
|
import "cthulu" for Cthulu
|
|
|
|
|
|
|
|
|
|
class Lovecraft {
|
2015-09-01 15:16:04 +00:00
|
|
|
construct new() {}
|
2015-07-10 16:18:22 +00:00
|
|
|
say() { Cthulu.new().message }
|
2015-02-18 16:39:31 +00:00
|
|
|
}
|
|
|
|
|
|
2015-09-15 14:46:09 +00:00
|
|
|
System.print(Lovecraft.new().say())
|