Skip to content

Instantly share code, notes, and snippets.

@basictomonokai
Created March 13, 2017 12:44
Show Gist options
  • Save basictomonokai/ded008602230b3af0a0830c55a9b5d34 to your computer and use it in GitHub Desktop.
Save basictomonokai/ded008602230b3af0a0830c55a9b5d34 to your computer and use it in GitHub Desktop.
file read(BASIC!)
file.exists flxx,"fd01.txt"
if flxx=0 then
else
irs=1
Text.open r, file_numbera, "fd01.txt"
do
Text.readln file_numbera, line$
if line$="EOF" then
else
if line$="" then
else
split abc$[],line$,"@@@"
rssname$[irs]=abc$[1]
rsskey$[irs]=abc$[2]
irs=irs+1
array.delete abc$[]
endif
endif
until line$="EOF"
Text.close file_numbera
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment