목차

str

str stringvar1 stringvar2 stringvarn

Example

(ns clojure.examples.hello
   (:gen-class))
(defn hello-world []
   (println (str "Hello" "World"))
   (println (str "Hello" "World" "Again")))
(hello-world)

Output

HelloWorld
HelloWorldAgain

Refs


관련 문서