This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package de.niklaskorz.brainfuck | |
import scala.io.Source | |
object App { | |
def main(args: Array[String]) { | |
var interpreter = new Interpreter | |
var source = Source.fromFile(args(0)).mkString | |
interpreter.eval(source) | |
} |
NewerOlder