public static int main (string[] args) { // Output: ``10^2 = pow (10, 2) = 100.000000`` double res = Math.pow (10, 2); print ("10^2 = pow (10, 2) = %lf\n", res); return 0;}
valac --pkg glib-2.0 -X -lm GLib.Math.pow.vala