{
	# KVIrc script
	# Call this test script with /parse <filename> <some params>
	echo File name : $0
	echo Number of parameters : $#
	echo Param 0 : $0; # This file name
	echo Param 1 : $1; # The first parameter
	echo Param 2 : $2; # The second one...
	echo Param 3 : $3; # ...
	echo Param 4 : $4
	echo Param 5 : $5
	echo Param 6 : $6
	echo Param 7 : $7
	echo Param 8 : $8
	echo Param 9 : $9
	echo Param 10: $10    ; # Out of range; interpreted as $1
	echo Param 1389: $1389; # Out of range; interpreted as $1
	echo Params 0- : $0-; # Full commandline
	echo Params 1- : $1-; # All parameters
	echo Params 2- : $2-; # All parameters following the first one
	echo Params 3- : $3-; # ...
	echo Params 4- : $4-
	echo Params 5- : $5-
	echo Params 6- : $6-
	echo Params 7- : $7-
	echo Params 8- : $8-
	echo Params 9- : $9-
	echo Params 91- : $91-; # Out of range , interpreted as $9

	if($# == 0)echo You have specified no parameters.
	else if($# == 1)echo You have specified one parameter.
	else echo You have specified $# parameters.
}
