**** Merged from MCS ****
[mono-project.git] / mcs / btests / StringLiterals1.vb
blobf6d6b3195eca66762251acb90fadd9b622a0faa5
1 Imports System
2 Module StringLiteral
3 Sub Main()
4 Try
5 Dim a As String="Hello"
6 Dim b As String="World"
7 Dim c As String=a*b
8 Catch e As Exception
9 Console.WriteLine(e.Message)
10 End Try
12 End Sub
13 End Module