REBOL Document

Prin - Function Summary


Summary:

Outputs a value with no line break.

Usage:

prin value

Arguments:

value - The value to print

Description:

No line termination is used, so the next value printed will appear on the same line. If the value is a block, each of its values will be evaluated first then printed.


    prin "The value is "
    prin [1 + 2]
    The value is 3


    prin ["The time is" now/time]
    The time is 0:59:58

Related:

print - Outputs a value followed by a line break.


<Back | Index | Next>

Copyright 2004 REBOL Technologies