aboutsummaryrefslogtreecommitdiffstats
path: root/debug_shell/debug_shell.go
diff options
context:
space:
mode:
Diffstat (limited to 'debug_shell/debug_shell.go')
-rw-r--r--debug_shell/debug_shell.go11
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()
+}