Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!caen!news.cs.indiana.edu!rutgers!ub.d.umn.edu!ckoprows From: ckoprows@ub.d.umn.edu (christopher koprowski) Newsgroups: comp.sys.apple2 Subject: Help with Complete Pascal Keywords: Pascal Message-ID: <1169@ub.d.umn.edu> Date: 18 Apr 91 02:37:46 GMT Organization: University of Minnesota, Duluth. Information Services. Lines: 25 I just started doing some programming with Complete Pascal, formely TML pascal, and was having troulbe trying to write a packed array this is what it my declartions looks like. type Let = packed array [1..20] of char; NameArray = array [1..20] of Let; Name : NameArray; I then read in the data and get no errors there but when I try to write the data I get "Error in type of standard Subprogram prameter" this is my printout statement. for Counter := 1 to do writeln ( Name [Count]); I have no idea as to what the problem, I probaly could read every character in the packed array but then that would defeate the whole purpose of using the packed array, this works fine on the schools Unix machine and I just thought that I could just write it on my GS. Any help would be much appreciated. ckoprows@ub.d.umn.edu