Simplified standard library

This commit is contained in:
2025-02-17 17:49:42 +01:00
parent b8e37fafae
commit b7685fd7ec
25 changed files with 232 additions and 231 deletions

View File

@ -31,7 +31,12 @@ func (f *Function) ToNumber(t token.Token) (int, error) {
}
number, err := strconv.Atoi(digits)
return number, err
if err != nil {
return 0, errors.New(err, f.File, t.Position)
}
return number, nil
case token.Rune:
r := t.Bytes(f.File.Bytes)