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 / SENTENCE.HLP < prev    next >
Text File  |  1990-06-11  |  812b  |  16 lines

  1. sentence  -- Operation, two inputs.  Abbreviation: se
  2.      The two inputs may be words or lists.  The output  is  a  list  formed
  3.      from  the two inputs in this way: if either input is a word, that word
  4.      becomes a member of the output list; if either input is  a  list,  the
  5.      members of that input become members of the output.  Here are some ex-
  6.      amples:
  7.  
  8.           first input         second input        output
  9.           "hello              "test               [hello test]
  10.           "goodbye            [cruel world]       [goodbye cruel world]
  11.           [a b]               [c d]               [a b c d]
  12.           []                  "garply             [garply]
  13.  
  14.      If an input is the empty list, as in the last example above,  it  con-
  15.      tributes nothing to the output.
  16.