mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
12 lines
294 B
Plaintext
12 lines
294 B
Plaintext
<c-choose>
|
|
<c-when test="0">A</c-when>
|
|
<c-when test="false">B</c-when>
|
|
<c-when test="true">TRUE</c-when>
|
|
<c-otherwise>C</c-otherwise>
|
|
</c-choose>,
|
|
|
|
<c-choose>
|
|
<c-when test="false">A</c-when>
|
|
<c-when test="false">B</c-when>
|
|
<c-otherwise>TRUE</c-otherwise>
|
|
</c-choose> |