8 lines
70 B
Go
8 lines
70 B
Go
|
package tlep
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
IS_NIL = errors.New("Is nil")
|
||
|
)
|