Water 5-Flow Control and Boolean-Boolean Logic
method and
Contract
Return typewob
No input parameters.
Parameter kindDefault valueType
Other unkeyed argumentsopt with ekind of expressionwob
Water Contract
<method and
  _other_unkeyed=opt=wob=ekind.expression="_body"/>

See also: or, not


Returns the value of the last expression if the subject and all arguments do not execute to false . Stop execution and return false if any argument is false . You may call and with or without a subject. Anything that is not false is considered to be true
<and true true/>true
<and false 10/>false
true.<and true true/>true
true.<and false true/>false
<and 5 0/>0
<if> <and 0 "Water"/>
          "success"
   </if>
"success"