initiaql check-in, moved repository -- no-longer a fork of

haikuarchives/yab
This commit is contained in:
Jim
2015-04-13 13:40:27 -07:00
parent 9e266ef95f
commit 3e33065a02
234 changed files with 77847 additions and 1 deletions

19
yab-IDE/data/GenerateIndex.yab Executable file
View File

@@ -0,0 +1,19 @@
f1 = open("data/Help_En.dat", "r")
f2 = open("data/Help_En_Index.dat", "w")
while(instr(a$, "& infotext") = 0)
line input #f1 a$
wend
while(not eof(f1))
line input #f1 a$
print #f2 a$
print #f2 tell(#f1)
while(left$(a$,1)<>"&" or left$(a$,10)="&exverbatim")
line input #f1 a$
print a$
wend
wend
close(f2)
close(f1)