RosettaCodeData/Task/Compile-time-calculation/Visual-Basic-.NET/compile-time-calculation-1.visual

8 lines
158 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
Module Program
Const FACTORIAL_10 = 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1
Sub Main()
Console.WriteLine(FACTORIAL_10)
End Sub
End Module