To use MODULA-3 in the New Undergraduate Lab 1. Create a .login and .cshrc file source ~cse214/login (put in .cshrc file) 2. To use MODULA-3: A. Create a subdirectory with your project name: Example: mkdir hello B. Go to this subdirectory (cd hello) and in it, create a new subdirectory src Example: mkdir src C In the src subdirectory create/include: 1. All source Example: Main.m3 MODULE Main; IMPORT Wr, Stdio; BEGIN FOR i:=1 TO 3 DO Wr.PutText(Stdio.stdout, "Hello World.\n"); END; END Main. 2. m3makefile Note the quotation marks within the parentheses! Example: m3makefile implementation ("Main") import ("libm3") program ("Hello") D. When complete, return to project name directory and type m3build to compile, etc. E. All compilation files and executable file will automatically be in a subdirectory called FreeBSD2. F. Go to that subdirectory and type program name to run.