Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # 벡터 A Vector is a collection of values indexed by contiguous integers. A vector is created by using the vector method in Clojure. ### Example <code> (ns clojure.examples.example (:require [clojure.set :as set]) (:gen-class)) (defn example [] (println (vector 1 2 3))) (example) </code> #### Output <code> [1 2 3] </code> ## Links - https://www.youtube.com/watch?v=uI3irkgypa4 - https://www.youtube.com/watch?v=-tFUTSWtPNs ## Refs - https://www.tutorialspoint.com/clojure/clojure_vectors.htm open/vector.txt Last modified: 2024/10/05 06:15by 127.0.0.1