PreviousUpNext

5.5.10  Compute the length of a list

Compute the length of a list:

    eval:  printf "%d\n" (length [ "red", "green", "blue" ] );
    3
    eval:  printf "%d\n" (list::length [ "red", "green", "blue" ] );
    3

Comments and suggestions to: bugs@mythryl.org

PreviousUpNext