Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

@ -0,0 +1,10 @@
100 cls
110 for i = 0 to 10
120 print using "##";i;
130 print " maps to ";
140 print using "##.#";maprange(i,0,10,-1,0)
150 next i
160 end
170 function maprange(s,a1,a2,b1,b2)
180 maprange = b1+(s-a1)*(b2-b1)/(a2-a1)
190 end function