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

How to force a newline

 [1/4] from: David_A_Brown:vanguard at: 7-May-2003 15:52


How do you force a new line in Rebol?

 [2/4] from: greggirwin::mindspring::com at: 7-May-2003 15:37


Hi David, Dvc> How do you force a new line in Rebol? In what context? print "" print ["my string" newline] s: {this is line 1^/this is line 2} append s "^M^J" -- Gregg

 [3/4] 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

 [4/4] from: John::Harbaugh::capmetro::org at: 8-May-2003 14:16

Re: How to force a new line


Could you explain what you mean by "force a new line" -and how you are trying to apply it? John