fork download
  1. var x: bool
  2. proc thisIsaLongCondition(): bool = true
  3. proc thisIsAnotherLongCondition(x: varargs[int]): bool =
  4.  
  5. true
  6.  
  7. if thisIsaLongCondition() and
  8. thisIsAnotherLongCondition(1,
  9. 2, 3, 4):
  10. x = true
Success #stdin #stdout 0s 2428KB
stdin
Standard input is empty
stdout
Standard output is empty