Files
jak-project/test/old_goal_tests/tests/test-nested-blocks-2.gc
T
2020-08-22 22:32:18 -04:00

17 lines
192 B
Scheme

;-*-Scheme-*-
(test-setup 8 #f)
(block outer-block
1
2
(block inner-block
3
4
(return-from inner-block 7)
5
)
8
)