Go to the first, previous, next, last section, table of contents.
Modula-3 programs are composed of one or more module files, along with a
makefile that tells the compiler how to put everything together. All of
these files must be located in a subdirectory called src
.
IMPORTANT: Case is significant in Modula-3 programs. This means that
-
All keywords and reserved words must be in uppercase letters.
-
Identifiers such as variables, constants, and procedure names must
always appear in the same case as the one used in the definition. For
example,
Main
and main
are two different identifiers.
Go to the first, previous, next, last section, table of contents.