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
Wrap
Text File
|
1996-12-07
|
370b
|
22 lines
#
# Summary : Demonstration of using quoted strings.
# Version : 1.0
# Author : Russ Ethington
#
print "Strings should appear in double quotes."
let see = "?"
print "Variable names inside quotes are ignored: " + "$see" + "?"
# Strings can be glued together with the plus sign.
let abc = "All" + " " + "together" + " " + "now."
print $abc