diff options
author | Charlie Stanton <charlie@shtanton.xyz> | 2024-04-21 17:52:08 +0100 |
---|---|---|
committer | Charlie Stanton <charlie@shtanton.xyz> | 2024-04-21 17:52:08 +0100 |
commit | 126fcb57b29dd0157cf2dd42da24dc0a047ec88c (patch) | |
tree | ea90a165bbd1800ea45216b00ffd830c4eb7755e /main/main.go | |
parent | f6e27ecd8881498776428c0ae5b674f65192058e (diff) | |
download | stred-go-126fcb57b29dd0157cf2dd42da24dc0a047ec88c.tar |
Fix bug where next command doesn't consume the input
Diffstat (limited to 'main/main.go')
-rw-r--r-- | main/main.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/main.go b/main/main.go index 47bcddb..bfa1afe 100644 --- a/main/main.go +++ b/main/main.go @@ -1,11 +1,11 @@ package main import ( - "io" - "os" "bufio" - "main/walk" + "io" "main/json" + "main/walk" + "os" ) type ProgramState struct { |