| http://www.w3.org/ns/prov#value | - This post is a result of the following discussions: Seq repeated execution unexpected behavior and Strange behavior of map function depending on first argumentThe following code is using a method that returns a Seq[Int] containing random numbers and acts on them (prints the first one).object SeqTest { def main(args: Array[String]) { val randomInts : Seq[Int] = mkRandomInts() println(randomI
|