Definition: | print(integer fn, object x, integer maxlen=-1) |
Description: |
Print, to file or device fn, an object x with braces { , , , }
to show the structure.
An optional maximum length may also be specified, for more details see sprint. |
Example 1: |
print(1, "ABC") -- output is: "ABC" (NB OpenEuphoria displays {65, 66, 67}) |
Example 2: |
print(1, repeat({10,20}, 3)) -- output is: {{10,20},{10,20},{10,20}} |
See Also: | sprint, ?, puts, printf, get |