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
/
declaration-1.boo
blob
aa2d2cb80452a4d9432668282fbcbc0747344824
1
"""
2
Hello
3
"""
4
for
item
in
[
" Hello "
]:
5
itemString
as
string
6
itemString
=
item
7
System
.
Console
.
Write
(
itemString
.
Trim
())
8