Functions Index :: P :: Print

[<< up one level]

Module:

debug :: core

Definition:

Print(val x01, val "x02", val "x03", val "x04", ... , val "x36")

Description:

Returns a clip with the values of the variables passed as arguments printed in separate lines (one line for each variable).

Note that if the string representation of a variable's value is very long it may be clipped.

Examples:

c = BlankClip(length=12)

n = 24

f = 20.3456

b = 3*n - 15 <= 6*Log(f)

s = "hello world!"

return Print(c, n, f, b, s)

 

[<< top]