#include using namespace metal; void some_loop_body() { } void f() { for(int i = 0; (i < 5); i = (i + 1)) { some_loop_body(); } }