testing5/bf.scala
changeset 285 bd9d142d2cd8
parent 266 ca48ac1d3c3e
child 325 ca9c1cf929fa
equal deleted inserted replaced
284:9a04eb6a2291 285:bd9d142d2cd8
     1 // Part 1 about an Interpreter for the Brainf*** language
     1 // Core Part about an Interpreter for 
     2 //========================================================
     2 // the Brainf*** language
     3 
     3 //=========================================
     4 //object CW10a {  // only for generating the Jar file
     4 
       
     5 object CW10a {
     5 
     6 
     6 
     7 
     7 type Mem = Map[Int, Int]
     8 type Mem = Map[Int, Int]
     8 
     9 
     9 
    10 
   220 }
   221 }
   221 
   222 
   222 
   223 
   223 */
   224 */
   224 
   225 
   225 //}
   226 }