monk/monk/ply/example/BASIC/sqrt2.bas
2019-09-28 13:56:12 +02:00

5 lines
56 B
QBasic

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