func5.tests 133 B

123456789
  1. f() { echo $1; }
  2. f 1
  3. # hush fails on this syntax, but i've never seen anyone use it ...
  4. #f() ( echo $1; )
  5. f 2
  6. #f() ( echo $1 )
  7. f 3