added a basic heap inspection utility to the debugger and modified the impl of the buffer object

This commit is contained in:
Francesco Cozzuto
2021-12-07 12:54:55 +01:00
parent f751cbcbd5
commit 51d744ef2e
11 changed files with 653 additions and 75 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ while i < n:
i = i + 1;
fun printPercent()
print('\r', 100.0 * i / n, '% ');
print(100.0 * i / n, '%\n');
printPercent();
}