nativity/lib/std/start.nat
2023-09-16 21:11:24 -06:00

8 lines
82 B
Plaintext

comptime {
_ = _start;
}
const _start = () noreturn {
while (true) {}
};