view ply-3.8/example/BASIC/sqrt2.bas @ 9156:3575a4981cb8

<oerjan> learn Saneb is too normal to invent things, but he likes to watch SV and play Vorld of Varcraft.
author HackBot
date Wed, 05 Oct 2016 15:13:27 +0000
parents 343ff337a19b
children
line wrap: on
line source

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