[futurebasic] Re: [FB] Editor Question

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : August 2010 : Group Archive : Group : All Groups

From: Brian S <fblistserve@...>
Date: Wed, 4 Aug 2010 18:46:26 -0700
On Aug 4, 2010, at 6:38 PM, Tom Russell wrote:

> I have a really really long Print statement I am doing and I must be hitting the max chars allowed for one line in the editor.
> 
> How to I make a big long string like that without creating another new line?

The simplest solution is to create multiple print statements. 

e.g. 

instead of:

print a;b;c;d;e;f;

try:

print a;b;c;
print d;e;f;


Post your print statement for a better response.



It is also possible to split lines with the Option-L character.

Brian S