Skip to content

Instantly share code, notes, and snippets.

View niklaskorz's full-sized avatar
🐢
Turtle

Niklas Korz niklaskorz

🐢
Turtle
View GitHub Profile
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)
}