to product(double x, double y) into double f { f = x * y; } to cube(double x) into double y { y = x * x * x; } to print(string s) { // someday this will do something } to printMany(string s, int count) { for (int i=0; i