1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
// Test that `return` works from inside loops
#let h() = {
for i in range(2) {
for j in range(2) {
((i, j), )
return
(10 * j,)
}
}
(-1,)
}
#test(h(), ((0, 0),))
#let h() = {
let i = 0
while i < 2 {
i += 1
let j = 0
while j < 2 {
((i, j), )
j += 1
return
(10 * j,)
}
(100 + i,)
}
(-1,)
}
#test(h(), ((1, 0),))
// Test that `return val` works from inside loops
#let h() = {
for i in range(2) {
for j in range(2) {
((i, j), )
return [a]
(10 * j,)
}
}
(-1,)
}
#test(h(), [a])
#let h() = {
let i = 0
while i < 2 {
i += 1
let j = 0
while j < 2 {
((i, j), )
j += 1
return [a]
(10 * j,)
}
(100 + i,)
}
(-1,)
}
#test(h(), [a])
|