abs and modify operations so they are opp

This commit is contained in:
2023-03-26 21:42:44 +01:00
parent c6c608ad91
commit 364afa630d
11 changed files with 656 additions and 185 deletions

View File

@@ -10,6 +10,9 @@ type builtinFunc struct {
}
func ArgonString(args ...any) (any, ArErr) {
if len(args) == 0 {
return ArString(""), ArErr{}
}
return ArString(anyToArgon(args[0], true, false, 3, 0, false, 0)), ArErr{}
}