List comprehensions: Difference between revisions

Content added Content deleted
(→‎Insitux: implementation)
(→‎Insitux: fix breaking changes)
Line 1,057: Line 1,057:
y (range x n+1)
y (range x n+1)
z (range y n+1)
z (range y n+1)
(when (!= (+ (* x x) (* y y)) (* z z))
(unless (= (+ (* x x) (* y y)) (* z z))
(continue))
(continue))
[x y z]))
[x y z]))