Exponentiation order: Difference between revisions

m
m (→‎{{header|Nim}}: fix markup)
m (→‎{{header|OCaml}}: fix markup)
Line 777:
=={{header|OCaml}}==
OCaml language has '**' as an exponentiation symbol for floating point integers
<syntaxhighlight lang="ocaml">
<OCaml code>
# 5. ** 3. ** 2. ;;
# 5. **( 3. ** 2.) ;;
#(5. ** 3. ) **2. ;;
</syntaxhighlight>
 
{{out}}
<pre>
10,333

edits