此函数返回列表中的第一项。
first - 语法
以下是语法。
(first lst)
参数 - " lst"是项目列表。
返回值 - 列表中的第一个值。
first - 示例
以下是Clojure中first的示例。
(ns clojure.examples.example (:gen-class)) (defn example [] (println (first (list 1 2,3)))) (example)
上面的程序产生以下输出。
1
参考链接
https://www.learnfk.com/clojure/clojure-lists-first.html
标签:Clojure,示例,无涯,列表,lst,clojure,example,first From: https://blog.51cto.com/u_14033984/8023759