examples\book\digital-artists\chapter5\Listing5.4.ck
// Listing 5.4 Local vs. global scope of variables
// Define some global variables
"HOWDY!!" => string howdy;
100.0 => float glob;
int int1, int2;
// Function definition
fun int interval( int note1, int note2)
{
int result;
note2 - note1 => result;
<<< howdy, glob >>>;
return result;
}
// Main program, test and print
interval(60,72) => int1;
interval(67,60) => int2;
<<< int1, int2 >>>;
<<< result >>>; // This line will cause an error
// comment it out to run program up to this point