view ply-3.8/example/BASIC/sqrt2.bas @ 12512:9b31bb5d9ee1 draft default tip

<int-e> learn The password of the month is a matter of ongoing investigations
author HackEso <hackeso@esolangs.org>
date Wed, 25 Sep 2024 19:54:44 +0100
parents 343ff337a19b
children
line wrap: on
line source

10 FOR X = 1 TO 100
20 PRINT X, SQR(X)
30 NEXT X
40 END