dfmt/tests/space_after_keywords.d

11 lines
130 B
D

void main(string[] args)
{
for (int i = 0; i < 10; ++i) {
if (i == 9) break;
}
while (false) {}
foreach (i; 0 .. 9) {
}
}