Created
January 13, 2013 10:43
-
-
Save niklaskorz/4523503 to your computer and use it in GitHub Desktop.
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) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment