# variable interpolation test
me=blah
pr=$me/blubber
base = /usr
uid = 501
base = /opt
base = /usr # set $base to a new value in this scope
log = ${base}/log/logfile # use braces
home = $base/home/max # $base should be /usr, not /opt !
# block(name) test
tag = dir
mono = teri
<$tag>
bl = 1
$tag>
<$tag mono>
bl = 2
$tag>
bl = 3
<$tag $mono>
bl = 3
$tag>