' **************************************************************************** ' Description: Tutorial 3, Playing with Strings ' Author: Jim KN6PE ' Revision: 09/18/08: Original ' **************************************************************************** SCRIPT Var FileName as String Var OutMsg as String BEGIN FileName = "Weather.txt" BBS = "K6FB-2" ' Note that the use of the anpersand (&) is used to join strings or ' variables containing strings together OutMsg = "The file name " & FileName & " will be sent to " & BBS Print(OutMsg) END