Clojure - 列表初探



此函数返回列表中的第一项。

语法

以下为语法。

(first lst)

参数 - ‘lst’ 是项列表。

返回值 - 列表中的第一个值。

示例

以下是 Clojure 中 first 的一个示例。

(ns clojure.examples.example
   (:gen-class))
(defn example []
   (println (first (list 1 2,3))))
(example)

输出

以上程序产生以下输出。

1
clojure_lists.htm
广告