如果数字为奇数,则返回true;如果数字不是整数,则引发异常。
odd? - 语法
以下是语法。
(odd? number)
odd? - 示例
以下是奇数测试函数的示例。
(ns clojure.examples.hello (:gen-class)) ;; This program displays Hello Learnfk (defn Example [] (def x (odd? 0)) (println x) (def x (odd? 2)) (println x) (def x (odd? 3)) (println x)) (Example)
上面的程序产生以下输出。
false false true
参考链接
https://www.learnfk.com/clojure/clojure-odd.html
标签:clojure,false,示例,无涯,println,Clojure,odd,def From: https://blog.51cto.com/u_14033984/8009125