home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / d / doslogo.zip / LOGOHLP.ZIP / COUNT.HLP < prev    next >
Text File  |  1990-06-11  |  593b  |  13 lines

  1. count  -- Operation, one input.
  2.      The input may be any Logo object.  If the input is a list, the  output
  3.      is a number indicating the number of members in the list.  (Note: only
  4.      top-level members are counted, not members of members.  The  count  of
  5.      the list
  6.  
  7.           [[This is] [a list]]
  8.  
  9.      is 2, not 4.)  If the input is a word, the output  is  the  number  of
  10.      letters  (or  other  characters) in the word.  Remember that in Logo a
  11.      number is just a particular kind of word, so the output from count can
  12.      be manipulated like any other Logo word.
  13.