Zero to the zero power: Difference between revisions

Content added Content deleted
(Added solution for Action!)
(Add vlang V)
Line 1,620: Line 1,620:
{{out}}
{{out}}
<pre>1</pre>
<pre>1</pre>

=={{header|Vlang}}==
<lang go>// Zero to the zero power, in V
// Tectonics: v run zero-to-the-zero-power.v
module main
import math

// starts here
// V does not include an exponentiation operator, but uses a math module
pub fn main() {
println(math.pow(0, 0))
}</lang>
{{out}}<pre>prompt$ v run rosetta/zero-to-the-zero-power.v
1.</pre>


=={{header|Wren}}==
=={{header|Wren}}==