Example #1
0
func init() {
	builtin.Reg("nth($list, $pos)", nth)
}
Example #2
0
func init() {
	builtin.Register("unquote($string)", unquote)
	builtin.Reg("length($value)", length)
}
Example #3
0
func init() {
	builtin.Register("inspect($value)", inspect)
	builtin.Register("unit($number)", unit)
	builtin.Reg("type-of($value)", typeOf)
}