FutureBasic Logo

<<    Index    >> FutureBasic

line continuation '¬'   operator



Syntax
statement ¬

Description
Splits a line of code into more than one line using the continuation character ¬. Pressing the option and lower-case l ( ell ) keys on a Mac keyboard emits this character.

Examples
CFStringRef s = @"hello ¬
world"

long fredIsHere = 2
if fredIsHere then print "Fred's here" ¬
else print "Fred's gone"

 

See also
colon ':'