doc: sample: add for and while loop samples

This commit is contained in:
2025-09-08 15:30:44 +01:00
parent cb63e8d016
commit 2ff85a7505
4 changed files with 83 additions and 0 deletions

8
doc/sample/ForLoop.im Normal file
View File

@@ -0,0 +1,8 @@
str = "hello".
for c in str do
cout put:c
end
cout put:"done"