i commited last idk when , so updates

This commit is contained in:
2025-12-01 11:45:42 +01:00
parent 4cab5d7202
commit 2c92baa9c8
28 changed files with 6957 additions and 505 deletions

View File

@@ -1,4 +1,9 @@
fun main() {
u8 testint = 255;
U8 testint = 2;
print(testint);
for(U8 i = 0; i < 10; i++) {
testint = testint + 1;
print(testint);
}
}