10 lines
206 B
Text
10 lines
206 B
Text
If OpenConsole()
|
|
Define n
|
|
PrintN("Reading specific pameters")
|
|
For n=0 To CountProgramParameters()
|
|
PrintN(ProgramParameter(n))
|
|
Next
|
|
Print(#CRLF$+"Press Enter")
|
|
Input()
|
|
CloseConsole()
|
|
EndIf
|