2003-07-29 12:16:01 +04:00
|
|
|
LIST="one two three four five six"
|
|
|
|
LIST:ts,="one,two,three,four,five,six"
|
|
|
|
LIST:ts/:tu="ONE/TWO/THREE/FOUR/FIVE/SIX"
|
|
|
|
LIST:tu:ts/="ONE/TWO/THREE/FOUR/FIVE/SIX"
|
|
|
|
LIST:ts:="one:two:three:four:five:six"
|
|
|
|
LIST:ts="onetwothreefourfivesix"
|
|
|
|
LIST:ts:S/two/2/="one2threefourfivesix"
|
|
|
|
LIST:S/two/2/:ts="one2threefourfivesix"
|
|
|
|
LIST:ts/:S/two/2/="one/2/three/four/five/six"
|
2003-07-29 12:44:41 +04:00
|
|
|
Pretend the '/' in '/n' etc. below are back-slashes.
|
|
|
|
LIST:ts/n="one
|
2003-07-29 02:52:10 +04:00
|
|
|
two
|
|
|
|
three
|
|
|
|
four
|
|
|
|
five
|
2003-07-29 12:16:01 +04:00
|
|
|
six"
|
2003-07-29 12:44:41 +04:00
|
|
|
LIST:ts/t="one two three four five six"
|
|
|
|
LIST:ts/012:tu="ONE
|
2003-07-29 02:52:10 +04:00
|
|
|
TWO
|
|
|
|
THREE
|
|
|
|
FOUR
|
|
|
|
FIVE
|
2003-07-29 12:16:01 +04:00
|
|
|
SIX"
|
2003-07-29 02:52:10 +04:00
|
|
|
make: Bad modifier `:tx' for LIST
|
2003-07-29 12:16:01 +04:00
|
|
|
LIST:tx="}"
|
2003-07-29 02:52:10 +04:00
|
|
|
make: Bad modifier `:ts\a' for LIST
|
2003-07-29 12:44:41 +04:00
|
|
|
LIST:ts/a:tu="\a:tu}"
|
2003-07-29 12:16:01 +04:00
|
|
|
FU_mod-ts="a/b/cool"
|
|
|
|
FU_mod-ts:ts:T="cool" == cool?
|
2003-07-31 04:46:15 +04:00
|
|
|
default FU=<v>fu</v> FOO=<v>foo</v> VAR=<v></v>
|
|
|
|
two FU=<v>bar</v> FOO=<v>goo</v> VAR=<v></v>
|
|
|
|
three FU=<v>bar</v> FOO=<v>goo</v> VAR=<v></v>
|
|
|
|
four FU=<v>bar</v> FOO=<v>goo</v> VAR=<v>Internal</v>
|
|
|
|
show FU=<v>bar</v> FOO=<v>goo</v> VAR=<v>Internal</v>
|