RosettaCodeData/Task/Zero-to-the-zero-power/Visual-Basic-.NET/zero-to-the-zero-power.visual

6 lines
80 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
Module Program
Sub Main()
Console.Write(0^0)
End Sub
End Module