mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 13:20:27 +00:00
13 lines
275 B
Go
13 lines
275 B
Go
|
package objects
|
||
|
|
||
|
var (
|
||
|
// TrueValue represents a true value.
|
||
|
TrueValue Object = &Bool{value: true}
|
||
|
|
||
|
// FalseValue represents a false value.
|
||
|
FalseValue Object = &Bool{value: false}
|
||
|
|
||
|
// UndefinedValue represents an undefined value.
|
||
|
UndefinedValue Object = &Undefined{}
|
||
|
)
|