> 
>     $$STDIN           # Return one element regardless of context.
>     @$STDIN           # Return number of element wanted by context.
>     *$STDIN           # Return all element regardless of context.
> 

How about

 
     $STDIN.$           # Return one element regardless of context.
     $STDIN.@           # Return number of element wanted by context.
     $STDIN.*           # Return all element regardless of context.
 

Reply via email to