repo.or.cz
/
k8jam.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Jambase cleanup; removed GNUstep utils (not really working anyway)
[k8jam.git]
/
misc
/
Jamnew.sample2
blob
6e3ffcc81480846aa12181337bce63e0f8aeab6c
1
list = a b c d e a f ;
2
Echo $(list) ;
3
4
list -= x ;
5
Echo $(list) ;
6
7
list -= c ;
8
Echo $(list) ;
9
10
list -= f ;
11
Echo $(list) ;
12
13
list -= a ;
14
Echo $(list) ;
15
16
list -= b ;
17
Echo $(list) ;
18
19
list -= e ;
20
Echo $(list) ;
21
22
list -= d ;
23
Echo $(list) ;
24
25
list -= x ;
26
Echo $(list) ;
27
28
29
list = a b c d e a f ;
30
Echo $(list) ;
31
32
list -= a x f ;
33
Echo $(list) ;