| changeset 290 | f1d4ee6afe5d |
| parent 264 | 25f3fbc43251 |
| child 292 | f260d89e791e |
| 289:38f67c1264e0 | 290:f1d4ee6afe5d |
|---|---|
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 |
|
6 |
5 |
7 type Mem = Map[Int, Int] |
6 type Mem = Map[Int, Int] |
8 |
7 |
9 |
8 |
10 import io.Source |
9 import io.Source |