**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / tests / DecimalLiteral.vb
blob98441d1c8ed74aece1b3efe1236193c74e7a6858
1 Imports System
2 Module DecimalLiteral
3 Sub Main()
4 Try
5 Dim a As Decimal=1.23
6 Dim b As Decimal=1.23E+10
7 Catch e As Exception
8 Console.WriteLine(e.Message)
9 End Try
10 End Sub
11 End Module