' **************************************************************************** ' Description: Tutorial 3b, Playing with Strings, more complex; shows how to ' use the CRLF (Carriege Return/Line Feed) variable and long lines ' Author: Jim KN6PE ' Revision: 10/03/08: Original ' **************************************************************************** SCRIPT VAR OutMsg as string BEGIN OutMsg ="Hi Cap," & CRLF & "This is an auto-generated message." & CRLF & " 73, Jim" Print(OutMsg & CRLF) OutMsg ="In this case, the string is longer than the form " & "and I want it to wrap around the Runtime Monitor. Note that " & "OSL continues to process the same assignment to OutMsg across " & "multiple lines." Print(OutMsg) END