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