//Uses an orchestra to play stuff //(Must add a piece of code defining an Orchestra //to the virtual machine first -- see orchestra.ck) Orchestra o; //Can access variables and functions of the Orchestra //class using o.ABCDEF where ABCDEF is function/variable name o.playEveryone(1::second); //call c.freq on the variable c used in the Orchestra o 800 => o.c.freq; o.playEveryone(1::second);