Files
helix/tests/indent/d.d
Blaž Hrastnik cd6a852c9e Add indent corpus
This will be used by the cargo indent-check xtask to validate queries,
similar to the existing indent tests in helix-core.
2026-06-07 21:29:01 +09:00

18 lines
238 B
D

import std.stdio;
struct Point {
int x;
int y;
}
void main() {
auto values = [1, 2, 3];
foreach (v; values) {
if (v > 1) {
writeln(v);
} else {
writeln("small");
}
}
}