
fun times10(x) = 10*x;
times10(5);
fun plus3(y) = 3 + y;
plus3(4);
val h = times10 o plus3;
h(7)

