SHS/pkg/shsh/token.go
2019-11-12 12:24:45 -08:00

19 lines
220 B
Go

package token;
import (
"strings"
)
type operation func(Token) Token
type Token struct {
Token *next
interface{} *_inner
}
func eval(string input) string {
ret := new(Token)
iter := &ret
}