diff options
author | Charlie Stanton <charlie@shtanton.xyz> | 2023-04-26 11:57:37 +0100 |
---|---|---|
committer | Charlie Stanton <charlie@shtanton.xyz> | 2023-04-26 11:57:37 +0100 |
commit | 0da98a3d83b5aa6ccae73658ef0692c4023bc70f (patch) | |
tree | b360581836295c21aef03efe5fb6f0d3aeb3f5fc /main/main.go | |
parent | c6b1341fab071ab9d9419dace857b826ddf2acf1 (diff) | |
download | stred-go-0da98a3d83b5aa6ccae73658ef0692c4023bc70f.tar |
Add Y and Z registers
Diffstat (limited to 'main/main.go')
-rw-r--r-- | main/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.go b/main/main.go index 0c7324b..2067920 100644 --- a/main/main.go +++ b/main/main.go @@ -9,7 +9,7 @@ import ( type Program []Command type ProgramState struct { - path, value, xreg []walk.Atom + path, value, xreg, yreg, zreg []walk.Atom in walk.JSONIn out walk.JSONOut program []Command |