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 / OUTPUT.HLP < prev    next >
Text File  |  1990-06-11  |  586b  |  13 lines

  1. output  -- Command, one input.  Abbreviation: op
  2.      This command is used in a user procedure  which  is  meant  to  be  an
  3.      operation.  The input to this command becomes the output from the user
  4.      procedure.  Please don't be confused by the fact that  the  user  pro-
  5.      cedure is an operation, while the output primitive procedure is a com-
  6.      mand used in that procedure.  Example:
  7.  
  8.      to nickname :person
  9.      if equalp :person [Peter Parker] [output "Spiderman]
  10.      if equalp :person [Lamont Cranston] [output "Shadow]
  11.      output first :person
  12.      end
  13.