Rebol Programming/new-line?

USAGE:

edit
NEW-LINE? block 

DESCRIPTION:

edit

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

NEW-LINE? is a native value.

ARGUMENTS

edit
  • block -- Position in block to check marker (Type: block)

SOURCE CODE

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