RosettaCodeData/Task/Exponentiation-order/OCaml/exponentiation-order.ocaml
2023-07-01 13:44:08 -04:00

3 lines
63 B
Text

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