Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: How to force a newline

From: carl::cybercraft::co::nz at: 24-Dec-2003 22:17

On 08-May-03, [David_A_Brown--vanguard--com] wrote:
> How do you force a new line in Rebol?
Here's three ways you can do it...
>> print "I am^/two lines."
I am two lines.
>> print "I am^(0A)two lines."
I am two lines.
>> print rejoin ["I am" newline "two lines."]
I am two lines. Hope that helps. -- Carl Read