Re: Question
- Posted by Hawke <mdeland at NWINFO.NET> Sep 25, 1998
- 951 views
Matt Z Nunyabidness wrote:
>Recently, I downloaded a QLB for QuickBASIC, and it had a function in
>there that could get the DOS version number. Is there anything like >that in
>Euphoria?
would
system("ver > tempver.txt",2)
sequence version
integer fn
fn=open("tempver.txt","r")
if fn=-1 then ....
version = gets(fn)
...blahblahblah u know the drill
not do what you need???

