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