marking5/bf.scala
changeset 286 269d7ca62c5e
parent 253 4da8550b2d0b
equal deleted inserted replaced
285:475c39725698 286:269d7ca62c5e
     1 // Part 1 about an Interpreter for the Brainf*** language
     1 // Part 1 about an Interpreter for the Brainf*** language
     2 //========================================================
     2 //========================================================
     3 
     3 
     4 //object CW10a {  // only for generating the Jar file
     4 object CW10a { 
     5 
     5 
     6 
     6 
     7 type Mem = Map[Int, Int]
     7 type Mem = Map[Int, Int]
     8 
     8 
     9 
     9 
   220 }
   220 }
   221 
   221 
   222 time_needed(1, run(b1))
   222 time_needed(1, run(b1))
   223 */
   223 */
   224 
   224 
   225 //}
   225 }