SHS/pkg/shsh/var_table.go
2019-11-28 01:04:51 -08:00

17 lines
302 B
Go

package shsh
import (
"strings"
)
type VarTable map[string]*Token
var (
GlobalVarTable *VarTable
)
// Library represents variables defined in inner scope
// It is assumed library is ordered from innermost scope to outermost scope
func GetVar(arg string, library []VarTable) *Token {
}