
This exercise will make sure you are able to print files on the lab printers, and give you a bit of experience in understanding and modifying some relatively simple Ada 95 programs.
Do Project #0 as given on the Project 0 handout.
All you need to do here is print a copy of your survey form.
Move to your csci51 directory and copy these files from programs51:
screen.ads (type cp programs51/screen.ads . <--- note the final dot)
screen.adb spider.ads spider.adb
Now compile these four files. (For example, type gcompile screen.ads )
Copy and compile walk_line.adb
Now link walk_line into an executable program (type glink walk_line.ali)
Now execute the program (type gexecute walk_line.exe)
Do the same with walk_box and draw_box.