Hello!
Iam trying to make simple program that reads input from another file
like myprog.exe <myfile.txt
I can do this with MS Quick basic like
DO UNTIL s$ = " "
s$ = INPUT$(1)
l$ = l$ + s$
LOOP
PRINT l$
But not with PB.. anyone know whats wrong?
Iam using PB Evaluation version 3.20 first day
I have read some examples and they use STDIN but i cant use it??
Thanks
Crey
Iam trying to make simple program that reads input from another file
like myprog.exe <myfile.txt
I can do this with MS Quick basic like
DO UNTIL s$ = " "
s$ = INPUT$(1)
l$ = l$ + s$
LOOP
PRINT l$
But not with PB.. anyone know whats wrong?
Iam using PB Evaluation version 3.20 first day

I have read some examples and they use STDIN but i cant use it??
Thanks
Crey
Comment