renamed samples to examples

This commit is contained in:
cozis
2022-03-13 15:40:10 +01:00
parent bf25e0f1a9
commit eae8536e3b
11 changed files with 0 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# This script creates a lot of objects, so it can be used to stress the garbage collector.
print('Start\n');
i = 0;
n = 1000;
while i < n: {
1 + 1 * 1;
i = i + 1;
fun printPercent()
print(100.0 * i / n, '%\n');
printPercent();
}
print('End\n');