view ply-3.8/example/BASIC/sqrt2.bas @ 7467:5d5b19d85004

<b_jonas> slashlearn try/There is no try.
author HackBot
date Mon, 18 Apr 2016 00:18:44 +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