Message 1 of 2

Not applicable
05-31-2019
09:15 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is there a way to nest the for loops and get the print statements to come out clean in the listening console:
i=4
z=4
z=4
for x1 = 0 in i do(
print "outer loop"
for x2 =0 in z do (
print "inner loop"
)
)
print "outer loop"
for x2 =0 in z do (
print "inner loop"
)
)
Solved! Go to Solution.