test("Can you believe it?.") { val i: Set[Int] = Set(1, 2, 3) val halves = for (n <- i) yield(n / 2) assert(Set(0, 1) == halves) }