ls = [1,2,3,4,5]for x in ls: print x * x
(:= ls (list 1 2 3 4 5))(for x ls (print (* x x)))
(import os)(for file (os.listdir ".") (if (os.path.isdir file) (print (+ file " : d")) (print (+ file " : f"))))
: back