On Github pbalduino / cljsp01
(defn fatorial [x] (if (= x 1) 1 (* (x (dec x))))) (fatorial 6)
(operador valor valor ... valor)
(operador (operador valor valor ... valor) valor)
1 + 2 * 3
1 + 2 * 3 1 + (2 * 3)
(+ 1 (* 2 3))
(defn if-not [condition falsy truey] (if condition falsy truey)) (if-not authorized (show-alert "Acesso negado") (drop-database))
(defmacro if-not [condition truey falsy] `(if ~condition ~falsy ~truey)) (if-not authorized (show-alert "Acesso negado") (drop-database))
(apply + (range 1 7)) ; => 21 (apply * (range 1 7)) ; => 720 (apply average (range 1 7)) ; => 720
public static long anFibN(final long n) { double p = (1 + Math.sqrt(5)) / 2; double q = 1 / p; return (long) ((Math.pow(p, n) + Math.pow(q, n)) / Math.sqrt(5)); }
(defn fibs [] (map first (iterate (fn [[a b]] [b (+ a b)]) [0 1]))) (def fib (lazy-cat [0 1] (map + fib (rest fib))))
(defn sleep [] (Thread/sleep 1000)) (defn fast-computation [x] (* x 2)) (defn heavy-computation [x] (sleep) (* x 2)) (time (doall (map heavy-computation [1 2 3 4 5]))) ; "Elapsed time: 5002.32348 msecs" (time (doall (pmap heavy-computation [1 2 3 4 5]))) ; "Elapsed time: 1003.531455 msecs"