Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Loop in Rust
Loops in Bash
Tips and Traps¶
- Forggeting
$
is a common mistake when using a shell variable.
Loops in Java
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
The condition(s) in a regular
for
orwhile
loop is recomputed before each iteration. Not only the change of loop variables but also other variables involved in the loop condition …