view ply-3.8/example/BASIC/func.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 DEF FDX(X) = 2*X
20 FOR I = 0 TO 100
30 PRINT FDX(I)
40 NEXT I
50 END