comp.lang.ada
 help / color / mirror / Atom feed
* a simple Sequential_IO question
@ 1988-02-13 22:08 Defender of The Faith
  0 siblings, 0 replies; only message in thread
From: Defender of The Faith @ 1988-02-13 22:08 UTC (permalink / raw)


Hello Netlanders:

        I personally know very little about Ada.  I am sending this on
behalf of a professor who is having problems with VAX Ada.  He is trying
to do simple sequential I/O in his program.

----------------------------------------------------------------------
with Sequential_Io;
use Sequential_Io;

procedure file_test is
        infyle, outfyle: file_type;
        var : integer;
begin
        open(infyle, in_file,"input.fil");
        create(outfyle,out_file,"output.fil");
        while not end_of_file(infyle) loop
                read(infyle,var);
                write(outfyle,var);
        end loop;
        close(outfyle);
        close(infyle);
end file_test;

----------------------------------------------------------------------

When I include "use sequential_io", the compiler keeps on telling me
that "sequential_io" is not a generic package.  The professor claims
that the above program works with an Ada compiler on the PC.

I tried to instantiate the package with:

        package s_io is new sequential(integer);
        use s_io;

But that still won't work.  Will some of you Ada gurus out there
help me with this rather simple question?  A sample program with
"sequential_io" would be of great help.

Thanks in advance for any help

P.S. We are running VMS 4.5 on a VAX 8650.

===========================================================================
Henry Yung               BITNET: hyung@scu
Operations Assistant     ARPA:   hyung%scu.bitnet@jade.berkeley.edu
Academic Computer Center USENET: portal!cup.portal.com!henry_k_yung@sun.com
Santa Clara University   INET:   henry_k_yung@cup.portal.com
Tel: (408)554-4082
===========================================================================

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~1988-02-13 22:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1988-02-13 22:08 a simple Sequential_IO question Defender of The Faith

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox