#!/bin/rc fn t{ echo '$1 is' $1 echo '$"1 is' $"1 echo '$#1 is' $#1 echo '$2 is' $2 echo '$"2 is' $"2 echo '$#2 is' $#2 echo 'testing concatenation of $1 '$2 # free caret inserts a ^ before $2 } t 100