7 lines
170 B
VB.net
7 lines
170 B
VB.net
|
|
Module Main
|
||
|
|
Sub Main(args As String())
|
||
|
|
Console.WriteLine("main; args:" & String.Join(", ", args))
|
||
|
|
Application.Run(New Form1())
|
||
|
|
End Sub
|
||
|
|
End Module
|