hash.c: fixed warnings
[k8jam.git] / misc / Jamnew.sample
blobc65a7cd3fd7dbdc9968ce2f4ca3e04378aa58a47
1 pwd = [ Pwd ] ;
2 Echo "currend dir" $(PWD) ;
5 list = c b a d ;
6 Echo "unsorted:" $(list) "|" ;
7 sorted = [ Sort $(list) ] ;
8 Echo "sorted:" $(sorted) "|" ;
11 if ! $(NT) {
12   cmd = [ Command which sdl-config : exit-code ] ;
13   Echo "cmd:" $(cmd) "|" ;
15   cmd = [ Command ls -1 Jam* : parse-output no-space-break no-tab-break no-cr-break  exit-code status-first ] ;
16   Echo "cmd:" $(cmd) "|" ;
17 } else {
18   cmd = [ Command cmd /c dir /w Jam* : parse-output no-space-break no-tab-break no-cr-break  exit-code status-first ] ;
19   Echo "cmd:" $(cmd) "|" ;
23 fl = [ Glob . : * ] ;
24 Echo "flist:" $(fl) "|" ;