PRINTDEPTHLIMIT

Synopsis
PRINTDEPTHLIMIT
Description

PRINTDEPTHLIMIT is a special variable. If its value is a nonnegative integer, then FMSLogo treats its value as maximum depth of a sublist (or subarray) structure that is printed by PRINT, etc.

Example
PRINT [[1 [2 [3 [4 [5]]]]]]
[1 [2 [3 [4 [5]]]]]]

MAKE "PRINTDEPTHLIMIT 4
PRINT [[1 [2 [3 [4 [5]]]]]]
[1 [2 [3 [... ...]]]]

SourceForge.net Logo