Skip to content

Latest commit

 

History

History
executable file
·
16 lines (12 loc) · 140 Bytes

File metadata and controls

executable file
·
16 lines (12 loc) · 140 Bytes

while

while (a != b) {
	// Do something
}

do while

do {
        // Do something
    } while (0);