Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 192 Bytes

README.md

File metadata and controls

11 lines (10 loc) · 192 Bytes
$ echo '
(let [square (fn [x]
               (* x x))
      apply-and-increment (fn [f x]
                            (+ 1 (f x)))]
  (apply-and-increment square 4))
' | cargo run

17