ex1 01¶ ← Back Basic Info¶ Type: sml Size: 89 B Origin Download Functional Programming └── Lab ML └── 0307 └── ex1 01.sml Preview¶ (*Write a function to compute the cube of a real number*) fun cube (x:real) = x * x * x;