Re: true/false atoms?
- Posted by Kat <KSMiTH at PELL.NET> Aug 13, 1999
- 807 views
Ok, for those of you following my foray into Eu, i did get this to finally
work properly, and i am still amazed by the speed, even running it in a dos
box in win95:
while 1 do
data = gets(dctstrfile)
if sequence(data) then
if ( match(datatofind,data) != 0 ) then
datafound = "true"
printf(1,"%s\n", {data} )
exit
end if
else exit
end if
end while
Thanks for all your helps,
Kat

