Build out builtins #1
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Build out the supported builtins for the core language. The set of builtins that need to be added/refined are:
eq
- change to be strongly typed (values of different types should return false)ne
,gt
,ge
,lt
,le
- as abovestr
- convert value to a stringint
- convert value to an intadd
,sub
,mup
,div
,mod
- integer functionscat
- string concatinationand
,or
,not
Added
eq
andne
.Current progress: