dilaria/test.dil

12 lines
101 B
Text

fn test() {
let a = 5;
}
test();
test();
let i = 0;
while i < 100_000 {
test();
i = i + 1;
}