Program.vb 403 字节
Newer Older
P
Pilchie 已提交
1 2
' Copyright (c) Microsoft Open Technologies, Inc.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information.

3 4 5 6 7 8 9
Namespace Microsoft.CodeAnalysis.VisualBasic.CommandLine
    Friend Module Program
        Function Main(args As String()) As Integer
            Return Vbc.Run(args)
        End Function
    End Module
End Namespace