home *** CD-ROM | disk | FTP | other *** search
/ Hand Held Organizer Toolkit / walnutcreekcdrom-handheldorganizertoolkit-march1998.iso / PalmPilot / support_applications / autopilot.exe / demo-quotes.su_ / demo-quotes.su
Text File  |  1996-12-07  |  370b  |  22 lines

  1. #
  2. # Summary : Demonstration of using quoted strings.
  3. # Version : 1.0
  4. # Author  : Russ Ethington
  5. #
  6.  
  7. print "Strings should appear in double quotes."
  8.  
  9. let see = "?"
  10.  
  11. print "Variable names inside quotes are ignored: " + "$see" + "?"
  12.  
  13. # Strings can be glued together with the plus sign.
  14. let abc = "All" + " " + "together" + " " + "now."
  15.  
  16. print $abc
  17.  
  18.  
  19.  
  20.  
  21.  
  22.