* MonthCalendar.cs:
[mono-project.git] / mcs / btests / DoubleLiteral.vb
blobbdb9be59c0c7d1714a0e80d8099f76f7dc1cbf5e
1 Imports System
2 Module DoubleLiteral
3 Sub Main()
4 Try
5 Dim a As Double=1.23
6 Dim b As Double=1.23E+10
7 Catch e As Exception
8 Console.WriteLine(e.Message)
9 End Try
10 End Sub
11 End Module