Update test/loop.zrl

This commit is contained in:
zongor 2025-07-30 18:00:03 -04:00
parent 9491559683
commit 3fa9c6c0b8
1 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
let a = 5.0; real a = 5.0;
do (let i = 50000, 0, -1) { do (int i = 50000, 0, -1) {
a = a + 5.0; a = a + 5.0;
} }
let b = a as nat; int b = a as nat;
print("Enter a string:"); print("Enter a string:");
let user_string = gets(); ste user_string = gets();
print(a.toS()); print(a.toS());
print(b.toS()); print(b.toS());
print(user_string); print(user_string);