Moved the character execution's to the pointer in order to handle the k command

This commit is contained in:
Julien Dessaux 2021-09-23 14:59:14 +02:00
parent 759ee2aa10
commit f86b5724e5
5 changed files with 78 additions and 26 deletions

View file

@ -38,5 +38,6 @@ func main() {
os.Exit(3)
}
interpreter.NewInterpreter(f, pointer.NewPointer()).Run()
v := interpreter.NewInterpreter(f, pointer.NewPointer()).Run()
os.Exit(v)
}