Tweak style.

This commit is contained in:
Bob Nystrom
2015-02-19 06:32:46 -08:00
parent 4260a10983
commit bdb8634743
2 changed files with 2 additions and 6 deletions

View File

@ -1,5 +1,3 @@
class Cthulu {
message {
return "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn"
}
message { "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn" }
}

View File

@ -1,9 +1,7 @@
import "cthulu" for Cthulu
class Lovecraft {
say {
return (new Cthulu).message
}
say { (new Cthulu).message }
}
IO.print((new Lovecraft).say)