#!/bin/csh -f
@ i = 0
while ( 1 )
	@ i++
	echo  $i
	sleep 1
end
