// start pseudo-code var y = “global”; function print-y() { print(y); } function test-scope() { var y = “local”; print-y(); } test-scope(); // statically scoped languages print “global” // dynamically languages print “local” print-y(); // all languages should print “global” // end pseudo-code This is the standard type of example used to explain what static [...]