value.go 273 B

1234567891011121314151617181920212223242526
  1. package muesli
  2. /* Run time values */
  3. type Value interface {
  4. }
  5. type IntValue int64
  6. type FloatValue float64
  7. type StringValue string
  8. type BoolValue bool
  9. type WordValue string
  10. type TypeValue string
  11. type AnyValue struct {
  12. }
  13. type ListValue struct {
  14. List []Value
  15. }