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