notes: """
  CoffeeScript has no `for` loop, so they are converted into `while` loops.
"""
----
for (a;b;c) {
  d();
}
----
a
while b
  d()
  c
