utility functions for implementing noja functions in c; built-ins for socket management; http server draft in noja

This commit is contained in:
Francesco Cozzuto
2023-01-15 00:51:36 +01:00
parent 2c7e0ae2ba
commit 74a1648af8
27 changed files with 1705 additions and 299 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ while i < n: {
i = i + 1;
fun printPercent()
print(100.0 * i / n, '%\n');
print(string.cat('\r', stringFromNumeric(100.0 * i / n), '%'));
printPercent();
}