Skip to content

Instantly share code, notes, and snippets.

@niklaskorz
Created January 13, 2013 10:43
Show Gist options
  • Save niklaskorz/4523503 to your computer and use it in GitHub Desktop.
Save niklaskorz/4523503 to your computer and use it in GitHub Desktop.
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