repo.or.cz
/
boo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
BOO-996, BOO-995: Added "then" keyword to replace "else" semantic in looping construc...
[boo.git]
/
tests
/
testcases
/
integration
/
statements
/
for-2.boo
blob
34d382a457015b945bbb6fad4b17f499d7d54ec9
1
"""
2
Item 1
3
Item 2
4
5
"""
6
7
for
item
as
string
in
List
().
Add
(
" 1 "
).
Add
(
" 2 "
):
8
print
(
"Item ${item.Trim()}"
)