* MonthCalendar.cs:
[mono-project.git] / mcs / btests / ArithmeticOperators2.vb
blob166b860969d2b6443b5994625dab1f986fb8e602
2 Imports System
4 Module ArithmeticOperators2
6 Sub main()
8 Dim c1 As Decimal
9 c1 = 12.345
10 c1 = c1 Mod 0
12 End Sub
14 End Module