one_or_many

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "one_or_many".
... in utilities.naml
711
712
713
714
715
716
717
718
719
720
<macro name="one_or_many" dot_parameter="n" parameters="one_text, many_text">
    <n.if.equal value1="[n.n/]" value2="1">
        <then>
            1 <n.one_text/>
        </then>
        <else>
            <n.n/> <n.many_text/>
        </else>
    </n.if.equal>
</macro>