In some placed I have
condition = ${if somecondition {1}{0}}
Why can't I gust write
condition = somecondition
??
As far as I understand string expansion, this should be easy to implement
(just remove condition checks and would also make things a lot easier, as we
could then also use:
condition = ${or {cond1}{cond2}{cond3}...}
As in other languages
if x then true else false
is pure sugar, which should be removed...