Hello! I think it would be awesome to implement ternary operator support [like Twig does](http://twig.sensiolabs.org/doc/templates.html#logic): ``` {{ foo ? 'yes' : 'no' }} {{ foo ?: 'no' }} == {{ foo ? foo : 'no' }} {{ foo ? 'yes' }} == {{ foo ? 'yes' : '' }} ```
Hello!
I think it would be awesome to implement ternary operator support like Twig does: