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

  1. #
  2. # Summary : Demonstration of the interpreter's predefined variables.
  3. # Version : 1.0
  4. # Author  : Russ Ethington
  5. #
  6.  
  7. # Here are a couple of predefined variables used together.
  8. print "At " + $date + ", " + $time + "..."
  9.  
  10. # Below is a list of all of the predefined variables available.
  11. print "$Date = " + $Date
  12. print "$Time = " + $Time
  13. print "$ScriptVersion = " + $ScriptVersion
  14. print "$SubroutineFullName = " + $SubroutineFullName
  15. print "$SubroutineBaseName = " + $SubroutineBaseName
  16. print "$CurrentDirectory = " + $CurrentDirectory
  17. print "$ProjectDirectory = " + $ProjectDirectory
  18. print "$DownloadDirectory = " + $DownloadDirectory
  19. print "$Password1 = " + $Password1
  20. print "$Password2 = " + $Password2
  21. print "$Password3 = " + $Password3
  22. print "$Program1 = " + $Program1
  23. print "$Program2 = " + $Program2
  24. print "$Program3 = " + $Program3
  25.  
  26.  
  27.  
  28.