Thinking about an intcode debugger
This commit is contained in:
14
2019/intcode-processor/debugger/main.go
Normal file
14
2019/intcode-processor/debugger/main.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package main
|
||||
|
||||
import "os"
|
||||
|
||||
var app *AppState
|
||||
|
||||
func main() {
|
||||
var parms []string
|
||||
if len(os.Args) > 1 {
|
||||
parms = os.Args[1:]
|
||||
}
|
||||
app = NewApp(parms)
|
||||
os.Exit(app.run(parms))
|
||||
}
|
||||
Reference in New Issue
Block a user