implement SEE and make comments suck less

This commit is contained in:
2021-02-24 20:19:25 -05:00
parent 583fa79985
commit a2e6115248
5 changed files with 139 additions and 101 deletions

View File

@@ -11,7 +11,7 @@ type Dictionary map[string]Word
// A Word defines a subroutine
type Word struct {
Name string
Impl func() error
Impl func(string) error
Source []string
Immediate bool
BranchCheck bool