<- Back to shtanton's homepage
aboutsummaryrefslogtreecommitdiff
path: root/main/main.go
diff options
context:
space:
mode:
authorCharlie Stanton <charlie@shtanton.xyz>2023-04-26 11:57:37 +0100
committerCharlie Stanton <charlie@shtanton.xyz>2023-04-26 11:57:37 +0100
commit0da98a3d83b5aa6ccae73658ef0692c4023bc70f (patch)
treeb360581836295c21aef03efe5fb6f0d3aeb3f5fc /main/main.go
parentc6b1341fab071ab9d9419dace857b826ddf2acf1 (diff)
downloadstred-go-0da98a3d83b5aa6ccae73658ef0692c4023bc70f.tar
Add Y and Z registers
Diffstat (limited to 'main/main.go')
-rw-r--r--main/main.go2
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