open:anonymous-functions

Anonymous Functions

(ns clojure.examples.hello
   (:gen-class))

;; This program displays Hello World
(defn Example []
   ((fn [x] (* 2 x)) 2))
(Example)


  • open/anonymous-functions.txt
  • 마지막으로 수정됨: 2021/11/22 23:48
  • 저자 127.0.0.1