Welcome to mirror list, hosted at ThFree Co, Russian Federation.

WriteOK.vb « testmbas « mbas « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abe4911b4dec022b24fe153f530738db3c982097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Module WriteOK

    Sub Main()
        REM Testing old-fashioned comments
        Console.WriteLine("OK!") ' Simple comments
    End Sub

End Module

Module WriteOK2

    Sub [Sub]() ' Escaped identifier
        Console.WriteLine("Sub:OK!")
    End Sub

End Module