From c3d812262761c140316f5501783f8302191e5053 Mon Sep 17 00:00:00 2001 From: JP Appel Date: Mon, 9 Jun 2025 16:09:56 -0400 Subject: Add debug shell --- debug_shell/debug_shell.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 debug_shell/debug_shell.go (limited to 'debug_shell/debug_shell.go') diff --git a/debug_shell/debug_shell.go b/debug_shell/debug_shell.go new file mode 100644 index 0000000..2ddf467 --- /dev/null +++ b/debug_shell/debug_shell.go @@ -0,0 +1,11 @@ +package main + +import "os" + +func main() { + // TODO: command line args + state := make(State) + interpreter := NewInterpreter(state, os.Stdin) + + interpreter.Run() +} -- cgit v1.2.3