Zero to the zero power: Difference between revisions

m
→‎{{header|Kotlin}}: Made the kotlin example not use Java.
No edit summary
m (→‎{{header|Kotlin}}: Made the kotlin example not use Java.)
Line 810:
 
=={{header|Kotlin}}==
<syntaxhighlight lang="scalakotlin">//import version 1kotlin.0math.6pow
 
fun main(args: Array<String>) {
println("0 ^ .0 = ${Math.pow(0.0, 0.0)}")
}</syntaxhighlight>
 
{{out}}
<pre>
0 ^ 0 = 1.0
</pre>
 
32

edits