mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-05-02 19:00:47 +08:00
11 lines
193 B
Plaintext
11 lines
193 B
Plaintext
use std.unix;
|
|
|
|
var count = 0;
|
|
while (1) {
|
|
unix.sleep(0.1);
|
|
count += 0.1;
|
|
println("process running time: ", count);
|
|
if (count > 2) {
|
|
die("test failed");
|
|
}
|
|
} |