pascal

one of the documented procedures in this installation of the ACS
Usage:
pascal   size
What it does:
prints Pascal's triangle
Defined in: /web/philip/tcl/ad-functional.tcl

Source code:


    for {set n 0} {$n<=$size} {incr n} {
	puts [map "choose $n" [enum_from_to 0 $n]]
    }


philg@mit.edu