Check-in 14
If you attend class on 9/25, you will have a chance to do this assignment in-class for the C14 grade

Consider the following Drewno Mars program:

			int a;
			fn : () void v{
				a = a + 1;
				console << a;
			}
			fn : () void w{
				a = 7;
				v();
				console << a;
			}
			fn : () void main{
				int a;
				w();
				console << a;
			}
			

Does this program compile in a static scoping scheme? In a dynamic scoping scheme? What is the output for each scheme in which it compiles?

If you skip class on 9/25, you should complete the above assignment on your own.
Turn your work in on Canvas to the C14 folder by 11:59 PM on 10/1 (the Sunday following 9/25).