repo.or.cz
/
k8lst.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
added some notes
[k8lst.git]
/
samples
/
testInject.st
blob
3af6cb99a0696945a1bf58c914e822201f1184d4
1
{
2
"simple inject:into: to sum elements in an array"
3
| array sum |
4
array := #( 1 2 3 4 5 ).
5
sum := array
6
inject: 0
7
into: [ :inj :ele | inj + ele ].
8
"answer: 15"
9
sum printNl.
10
}