blob: 1d63d326b76b0f0d2cc60bc3758de6159125261e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package value
type IntData int64
type FloatData float64
type StringData string
type BoolData bool
type ArrayData []Value
type NullData struct{}
type FunctionData struct{} // TODO
type ObjectData struct{} // TODO
|