🎨 format
Some checks failed
Nasal Interpreter Test / mac-aarch64 (push) Has been cancelled
Nasal Interpreter Test / linux-x86_64 (push) Has been cancelled

This commit is contained in:
ValKmjolnir
2025-06-02 13:43:00 +08:00
parent 2cc5bb8625
commit af3d93ab64
53 changed files with 185 additions and 185 deletions

View File

@@ -21,7 +21,7 @@ if (size(arg)<1) {
var content = io.readfile(arg[0], "r");
var tail_len = 0;
while(math.mod(size(content), 256*3)!=0) {
while (math.mod(size(content), 256*3)!=0) {
content ~= "A";
tail_len += 1;
}

View File

@@ -3,7 +3,7 @@ use std.unix;
println("[", os.time(), "] (=.=) auto push, please wait...");
while(system("git push")!=0) {
while (system("git push")!=0) {
println("[", os.time(), "] (ToT) failed to push, retrying...");
unix.sleep(0.5);
}