solutions5/bf.scala
changeset 290 f1d4ee6afe5d
parent 264 25f3fbc43251
child 292 f260d89e791e
--- 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]