Data update

This commit is contained in:
Ingy döt Net 2025-02-27 18:35:13 -05:00
parent 8e4e15fa56
commit 72eb4943cb
1853 changed files with 35514 additions and 9441 deletions

View file

@ -16,11 +16,11 @@ fun main ← int by List args
if args.length æ 1
writeLine(isNumeric(args[0]))
else
writeLine("value".padEnd(8, " ") + " " + "numeric")
writeLine("value".padEnd(8, " "), " ", "numeric")
for each text value in text["0o755", "thursday", "3.14", "0b1010", "-100", "0xff"]
writeLine(value.padEnd(8, " ") + " " + isNumeric(value))
writeLine(value.padEnd(8, " "), " ", isNumeric(value))
end
end
return 0
return Runtime.OK
end
exit main(Runtime.args)