aboutsummaryrefslogtreecommitdiff
path: root/tokens.go
diff options
context:
space:
mode:
Diffstat (limited to 'tokens.go')
-rw-r--r--tokens.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/tokens.go b/tokens.go
index e606535..1d9f629 100644
--- a/tokens.go
+++ b/tokens.go
@@ -24,8 +24,10 @@ const (
MINUS
TIMES
DIVIDE
- DROP
TAKE
+ DROP
+ ASSIGN
+ BRANCH
QUAD
SLASH
SLASHBAR
@@ -117,8 +119,10 @@ var Tockens = map[rune]int{
'-': MINUS,
'×': TIMES,
'÷': DIVIDE,
- '↓': DROP,
'↑': TAKE,
+ '↓': DROP,
+ '←': ASSIGN,
+ '→': BRANCH,
'⎕': QUAD,
'/': SLASH,
'⌿': SLASHBAR,