ainslec / adventuron-issue-tracker

Adventuron Issues Tracker
4 stars 0 forks source link

Allow deep ternary form within the standard description text #471

Open ainslec opened 2 years ago

ainslec commented 2 years ago

This works ....

start_at = "l1"
booleans  / a : boolean "true";
locations / l1 : location "{a ? `hello` : `goodbye`}";

This should also work (embedded ? : form withing {}) ....

encountered unexpected token "?"

start_at = "l1"
booleans  / a : boolean "true";
locations / l1 : location "{a ? `hello` : a ? `hello` : `goodbye`}";