DUELink’s scripting language has a For loop in “Basic style” as below:
for i=1 to 5
println(i)
next
A basic programmer would expect five lines to be output. But, with DUELink only four lines, 1..4, are printed. This is consistent with Python For loops.
This characteristic is documented. But easily overlooked.