<@U1BDMPU82>: <@U0B8ZP13Q> : about the `for` loop...
# announcements
v
@ravna: @cedric : about the
for
loops the initial example of a "normal" for loop was
for (Node n = head; n.value < max; n = n.next) {}
this isn't a "normal" for-loop, it is just an old C-style languages of the last decade (maybe two) don't have them in favour of
for(x in xs)
which covers all the cases and more for example Swift, being very C++ like, is dropping this syntax because no one needs it