fun main() { U8 testint = 2; print(testint); for(U8 i = 0; i < 10; i++) { testint = testint + 1; print(testint); } }