| format |
| Syntax |
format(E: OBJECT, N: INT): STRING |
| Description |
| Example |
/**/ L := [5^n | n In 0..7];
/**/ Foreach F In L Do print Format(F,8); EndForeach;
1 5 25 125 625 3125 15625 78125
/**/ M := Format(L,20);
/**/ M; -- "Format" does not truncate
[1, 5, 25, 125, 625, 3125, 15625, 78125]
/**/ type(L);
LIST
/**/ type(M);
STRING
|
| See Also |