RosettaCodeData/Task/Exponentiation-order/OCaml/exponentiation-order.ml
2024-10-16 18:07:41 -07:00

3 lines
63 B
Standard ML

# 5. ** 3. ** 2. ;;
# 5. **( 3. ** 2.) ;;
#(5. ** 3. ) **2. ;;