Version 0 of s

Updated 2002-12-12 10:10:52

The S combinator is a sort-of generalised function application from combinator theory.

  proc S {f g x} {
     $f $x [$g $x]
  }