#!/bin/csh -f
@ a=0
while ( 1 )
	@ a++
	if ( $a == 10 ) break
	sleep 1
	echo $a
end
