Date: Sun, 27 Dec 1998 16:43:22 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: BrentPs AT aol DOT com cc: djgpp AT delorie DOT com Subject: Re: I need help... In-Reply-To: <88d8413.36863c93@aol.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Sun, 27 Dec 1998 BrentPs AT aol DOT com wrote: > I need > someone to walk me through it or just explain a couple of basics or send a > sample program that they know will run... The file README.1ST explains how to compile programs. Here's a classic first program for you to try: --------------------------- cut here -------------------------- #include int main (void) { printf ("Hello, world!\n"); return 0; }