1
0
forked from Mirror/wren

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 { class Cthulu {
message { message { "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn" }
return "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn"
}
} }

View File

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