aboutsummaryrefslogtreecommitdiffstats
path: root/debug_shell/debug_shell.go
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2025-06-13 12:35:37 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2025-06-13 12:35:37 -0400
commitf85cfb2055551926ed4aeaa0550330d3e4da7569 (patch)
tree8ac67405b961c3609ab6fbd9488c826ab81b3e97 /debug_shell/debug_shell.go
parentbf841d00967c3047bff88dbe070cb56319e1fe38 (diff)
Move debug shell into main binary as a command
Diffstat (limited to 'debug_shell/debug_shell.go')
-rw-r--r--debug_shell/debug_shell.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/debug_shell/debug_shell.go b/debug_shell/debug_shell.go
deleted file mode 100644
index 2ddf467..0000000
--- a/debug_shell/debug_shell.go
+++ /dev/null
@@ -1,11 +0,0 @@
-package main
-
-import "os"
-
-func main() {
- // TODO: command line args
- state := make(State)
- interpreter := NewInterpreter(state, os.Stdin)
-
- interpreter.Run()
-}