diff options
author | Charlie Stanton <charlie@shtanton.xyz> | 2023-04-19 15:19:42 +0100 |
---|---|---|
committer | Charlie Stanton <charlie@shtanton.xyz> | 2023-04-19 15:19:42 +0100 |
commit | dae74317d84471f6a859117fcbba1cf546be8ea1 (patch) | |
tree | db8516ba8a5a208d16aaa0e6da439541dd496b94 /main/main.go | |
parent | 10f847acc7087317b0fbe20b7cf3307a0fafab8a (diff) | |
download | stred-go-dae74317d84471f6a859117fcbba1cf546be8ea1.tar |
Adds parsing substitute commands, though executing them currently does nothing
Diffstat (limited to 'main/main.go')
-rw-r--r-- | main/main.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/main/main.go b/main/main.go index 3da414d..902c5b9 100644 --- a/main/main.go +++ b/main/main.go @@ -3,7 +3,6 @@ package main import ( "os" "bufio" - "main/subex" "main/walk" ) @@ -17,10 +16,6 @@ type ProgramState struct { } func main() { - subex.Main() -} - -func mainISH() { quiet := false var input string hasInput := false |