#!/bin/csh -f
set a=1
@ b = $a - $#argv
if ( $b ) then
	echo no args
else
	echo one arg
endif
