lmc/machine.go

12 lines
155 B
Go

package main
func Run(code []int16) {
// TODO: assert that the code is 100 boxes long
pc := 0
for pc < len(code) {
}
// TODO: throw an exception
}