home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hand Held Organizer Toolkit
/
walnutcreekcdrom-handheldorganizertoolkit-march1998.iso
/
PalmPilot
/
support_applications
/
autopilot.exe
/
demo-assign.su_
/
demo-assign.su
Wrap
Text File
|
1996-12-07
|
469b
|
25 lines
#
# Summary : Demonstration of the assignment statement.
# Version : 1.0
# Author : Russ Ethington
#
# These are simple assignment statements.
let x = "Hi"
let y = "there."
# Compound assignment statements are okay too.
let z = "Hi" + " " + $y
let space = " "
let whole = $x + $space + $y
# Now let's print out the variables used so far.
print $x + " " + $y
print $z
# Using a variable with no value will generate an error.
print $apple