6 lines
110 B
Text
6 lines
110 B
Text
|
|
Sub Main(ByVal args As String())
|
||
|
|
For Each token In args
|
||
|
|
Console.WriteLine(token)
|
||
|
|
Next
|
||
|
|
End Sub
|