(defn padding-right [s width pad] (apply str (take width (concat s (repeat pad))))) (padding-right "Clojure" 10 " ") ;; "Clojure ".
確定! 回上一頁