fixed append bug

This commit is contained in:
Aidan 2020-06-21 13:59:09 -07:00
parent fe5afcb345
commit 1889942db8
No known key found for this signature in database
GPG key ID: 327711E983899316
3 changed files with 9 additions and 2 deletions

View file

@ -40,6 +40,9 @@ func (t *Token) Eval(funcs FuncTable, vars VarTable) *Token {
if tok.Tag == LIST {
eligibleForSystemCall = false
}
tok.Next = t_.Next
return tok
}
case LIST:
@ -61,7 +64,7 @@ func (t *Token) Eval(funcs FuncTable, vars VarTable) *Token {
return nil
}
// hook into stdlib exec
// TODO: hook into stdlib exec
return nil // TODO: Thats gotta change
}