; The most basic loop is the while loop. while (abc) "heelo" while (1 + 2 == 3) { "hello" } while (symbol) { "hello" } ; We could use some sugar for this. let i = 0 while (i < 10) { "hello" ; --i } ; TODO: add post/pre increment tokens ; TODO: add functions ; TODO: add function calls ; for let i = 1, 1 < 10, i++ { ; }