From 1ff37517a579de004f6a35152c1aa4527a1a1e23 Mon Sep 17 00:00:00 2001 From: acute_interpreter_panic <223899499+acute-interpreter-panic@users.noreply.github.com> Date: Fri, 10 Oct 2025 13:21:04 +0200 Subject: [PATCH] test --- internal/cli/shell.go | 2 ++ main.go | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/internal/cli/shell.go b/internal/cli/shell.go index d121045..79d291a 100644 --- a/internal/cli/shell.go +++ b/internal/cli/shell.go @@ -154,6 +154,8 @@ func Shell(commandsList ...[]string) { } else { command = commands[0] commands = commands[1:] + + fmt.Println("> " + command) } store, err = interpretCommand(strings.TrimSpace(command), store) diff --git a/main.go b/main.go index 898d76f..53e828a 100644 --- a/main.go +++ b/main.go @@ -5,5 +5,8 @@ import ( ) func main() { - cli.Shell() + cli.Shell([]string{ + "#a Crystal F", + "20", + }) }