add existing documentation

This commit is contained in:
2024-11-02 15:11:00 +00:00
parent d5c41cbbaa
commit ac92c5317e
9 changed files with 1066 additions and 0 deletions

20
doc/sample/FizzBuzz.im Executable file
View File

@@ -0,0 +1,20 @@
for i in 0 to:100 do
p = false
if i % 3 == 0 then
cout print:'fizz'
p = true
end
if i % 5 == 0 then
cout print:'buzz'
p = true
end
if !p then
cout print:'{i}'
end
cout cr
end