`do { f() } while ( cond() )` is the same as ``` f(x) while( cond() ) { f(x) } ```
do { f() } while ( cond() )is the same as