Autrijus Tang wrote:
as well as the non-short-circuitting "!!" logical operator, and the
lower-precedenced "nor".

I'm not sure if '!' fits the heavy weight perl6 grammar. But why is 'nor' not short-circuitting? It only continues when the left side is true --- like '||' and '//'. At least this is what the logic table tells me:

 a  b   a nor b == !a and !b
 0  0      1
 0  1      0
 1  0      0
 1  1      0

Regards,

P.S.: I've no clue what I meant with delimeter! Should be delimiter :)
--
TSa (Thomas Sandlaß)




Reply via email to