samples/gen.bas
author heck <heck@pep.foundation>
Thu, 04 Feb 2021 01:41:09 +0100
changeset 71 adb8b1a1d517
parent 26 0c3815cbb51e
permissions -rw-r--r--
used a perl script[0] to convert .hgignore to .gitigore

[0] https://github.com/devzendo/hgignore-to-gitignore
110 DATA "Meier", "Uhlmannstrasse 42", "Laupheim"
120 DATA "Schmidt", "Haupstrasse 23", "Bad Waldsee"
1000 FOR I=1 TO 2 STEP 1
1010 READ NAME$, STREET$, VILLAGE$
1020 PRINT "INSERT INTO address (name, street, village) VALUES ('" + NAME$ + "', '" + STREET$ + "', '" + VILLAGE$ + "');"
1030 NEXT I