diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2025-06-09 16:09:56 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2025-06-09 16:09:56 -0400 |
| commit | c3d812262761c140316f5501783f8302191e5053 (patch) | |
| tree | 5c70e8c340ef24275740f2bfe7b7e21392c1a56b /debug_shell/debug_shell.go | |
| parent | b09bbdae45e0c3a3b3f00c6a677dd524464ddf67 (diff) | |
Add debug shell
Diffstat (limited to 'debug_shell/debug_shell.go')
| -rw-r--r-- | debug_shell/debug_shell.go | 11 |
1 files changed, 11 insertions, 0 deletions
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() +} |
