f::pascal (public)

 f::pascal size

Defined in packages/acs-tcl/tcl/ad-functional-procs.tcl

Prints Pascal's triangle

Parameters:
size

Partial Call Graph (max 5 caller/called nodes):
%3 f::bind f::bind (public) f::enum_from_to f::enum_from_to (public) f::map f::map (public) f::pascal f::pascal f::pascal->f::bind f::pascal->f::enum_from_to f::pascal->f::map

Testcases:
No testcase defined.
Source code:
    for {set n 0} {$n<=$size} {incr n} {
        puts [map [bind choose $n] [enum_from_to 0 $n]]
    }
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: