view ply-3.8/example/BASIC/sqrt1.bas @ 11979:f04a3527bfa9 draft

<kspalaiologos> learn the bfasm The brainfuck assembler. Documentation and samples: https://raw.githubusercontent.com/KrzysztofSzewczyk/asmbf/master/doc/bfasm.doc
author HackEso <hackeso@esolangs.org>
date Wed, 23 Oct 2019 17:51:27 +0000
parents 343ff337a19b
children
line wrap: on
line source

10 LET X = 0
20 LET X = X + 1
30 PRINT X, SQR(X)
40 IF X < 100 THEN 20
50 END