Rebol Programming/new-line?

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:

[edit | edit source]
NEW-LINE? block 

DESCRIPTION:

[edit | edit source]

Returns the state of the new-line marker within a block.

NEW-LINE? is a native value.

ARGUMENTS

[edit | edit source]
  • block -- Position in block to check marker (Type: block)

SOURCE CODE

[edit | edit source]
new-line?: native[
    {Returns the state of the new-line marker within a block.} 
    block [block!] "Position in block to check marker"
]