#!/bin/ksh
#file: countargs2

countargs2() {
return $#
}

countargs2 un deux trois 
result=$?
echo $result
