package muesli /* Run time values */ type Value interface { } type IntValue int64 type FloatValue float64 type StringValue string type BoolValue bool type WordValue string type TypeValue string type AnyValue struct { } type ListValue struct { List []Value }