Documentation ¶ Index ¶ Variables func Eval(node ast.Node, env *object.Environment) object.Object Constants ¶ This section is empty. Variables ¶ View Source var ( // NULL is the object for null values NULL = &object.Null{} // TRUE is the boolean object for true values TRUE = &object.Boolean{Value: true} // FALSE is the boolean object for false values FALSE = &object.Boolean{Value: false} ) Functions ¶ func Eval ¶ func Eval(node ast.Node, env *object.Environment) object.Object Eval will evaluate a program Types ¶ This section is empty. Source Files ¶ View all Source files builtins.goevaluator.go Click to show internal directories. Click to hide internal directories.