Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Path: utzoo!watmath!clyde!cbatt!ihnp4!inuxc!pur-ee!uiucdcs!uiucdcsp!vanzandt
From: vanzandt@uiucdcsp.UUCP
Newsgroups: comp.sys.ibm.pc
Subject: Re: Turbo Pascal --- Help Needed
Message-ID: <75800001@uiucdcsp>
Date: Thu, 11-Dec-86 10:47:00 EST
Article-I.D.: uiucdcsp.75800001
Posted: Thu Dec 11 10:47:00 1986
Date-Received: Mon, 15-Dec-86 06:47:56 EST
References: <1157@genrad.UUCP>
Lines: 17
Nf-ID: #R:genrad.UUCP:1157:uiucdcsp:75800001:000:406
Nf-From: uiucdcsp.cs.uiuc.edu!vanzandt    Dec 11 09:47:00 1986



	If that is exactly what you typed in, you do indeed have an error.
Try:
	Program Test;
	Begin
		Writeln('Hello');
	End.

	3 things here:
		(1) Turbo Pascal does pay attention to the (input, output)
			specifier in the header (not Ver 2.0 anyway).
		(2) You forgot your end quote after Hello.
		(3) It might require the semi-colon after the writeln even
			though standard Pascal doesn't.

	Good Luck...