xref: /original-bsd/usr.bin/pascal/how/how_pc (revision ce085034)
1*ce085034Swnj@(#)how_pc	1.1 (Berkeley) 03/02/81
2*ce085034SwnjTo translate a program using pc, place the source in a file whose name ends
3*ce085034Swnjin the characters ".p", e.g. "prog.p".  The command
4*ce085034Swnj	pc prog.p
5*ce085034Swnjwill translate the program, leaving an executable program in the file a.out
6*ce085034Swnjin the current directory.  This code can be executed by typing
7*ce085034Swnj	a.out
8*ce085034SwnjThe complete command line syntax for pc is
9*ce085034Swnj	pc [ option ] [ -i file ... ] name.p ...
10*ce085034SwnjThe command "man pc" will give information as to the options of pc.
11*ce085034SwnjRefer to the Berkeley Pascal User's Manual for more details.
12