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

@ -13,16 +13,16 @@ END
# Process data string into table.
# We could have just started with a list of lists, of course.
var table = submatches(RE/([^ ]+) +([^ ]+) +([^ ]+) +(.+)\n?/, data)
var table = submatches(data, by=RE/([^ ]+) +([^ ]+) +([^ ]+) +(.+)\n?/)
for i in 2..len(table) {
table[i] = map([number, number, number, _], table[i])
table[i] = map(table[i], by=[number, number, number, _])
}
for test in rest(table) {
for test in less(table, of=1) {
val start, stop, inc, comment = test
{
val s = series(start .. stop, inc)
val s = series(start .. stop, inc=inc)
catch {
writeln "{{comment}}\nERROR: {{_err'msg:L200(...)}}\n"
} else {