home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / aa_m68k_Only / NXLogo / NXLogoLibrary / help / sentence < prev    next >
Encoding:
Text File  |  1992-07-09  |  809 b   |  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.      _m_e_m_b_e_r_s 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.