Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -13,36 +13,36 @@ end
sub euler
cls
cursor 1, 1
wait
print "step: ", s
cls
cursor 1, 1
wait
print "step: ", s
let b = 100
let y = 100
let b = 100
let y = 100
for t = 0 to b step s
for t = 0 to b step s
print t, " : ", y
print t, " : ", y
let y = y + s * (-0.07 * (y - 20))
let y = y + s * (-0.07 * (y - 20))
gosub delay
gosub delay
next t
next t
alert "step ", s, " finished"
alert "step ", s, " finished"
return
sub delay
let w = clock
let w = clock
do
do
wait
wait
loop clock < w + 200
loop clock < w + 200
return