github.com/hirochachacha/plua@v0.0.0-20170217012138-c82f520cc725/object/value.go (about)

     1  package object
     2  
     3  type Value interface {
     4  	Type() Type
     5  	String() string
     6  }
     7  
     8  const (
     9  	True  = Boolean(true)
    10  	False = Boolean(false)
    11  )