solutions5/bf.scala
changeset 290 2186e204a26c
parent 264 ecd989eee8bd
child 292 a52987bf44e1
--- a/solutions5/bf.scala	Wed Oct 30 14:21:16 2019 +0000
+++ b/solutions5/bf.scala	Wed Oct 30 14:25:07 2019 +0000
@@ -1,8 +1,7 @@
 // Part 1 about an Interpreter for the Brainf*** language
 //========================================================
 
-object CW10a {  // only for generating the Jar file
-
+object CW10a {  
 
 type Mem = Map[Int, Int]