Skip to content

Instantly share code, notes, and snippets.

View latticetower's full-sized avatar

Tanya Malygina latticetower

View GitHub Profile
@latticetower
latticetower / lazy_bomb_test.scala
Last active January 8, 2016 13:38 — forked from zmactep/lazy_bomb_test.scala
Funny bomb test on scala lazy
sealed trait BombLike {
def power : Int
def name : String
}
case class Bomb(power : Int, name : String) extends BombLike {
println("Explosion!")
}
case object Clock extends BombLike {