int() bool() and str()
Some checks failed
Build / build (push) Successful in 9m45s
Test / build (push) Failing after 16m25s

This commit is contained in:
Chuck Smith
2024-03-21 15:19:48 -04:00
parent 43362475f9
commit d3471af03d
7 changed files with 138 additions and 3 deletions

View File

@@ -17,6 +17,9 @@ var Builtins = map[string]*Builtin{
"pop": {Name: "pop", Fn: Pop},
"exit": {Name: "exit", Fn: Exit},
"assert": {Name: "assert", Fn: Assert},
"bool": {Name: "bool", Fn: Bool},
"int": {Name: "int", Fn: Int},
"str": {Name: "str", Fn: Str},
}
// BuiltinsIndex ...