fork download
  1. (let [spam "foo"
  2. ham (str "b" "ar")] ; str is a function that concatenates strings
  3. (println spam ham)) ; or converts variables into strings.
Success #stdin #stdout 1.64s 334528KB
stdin
Standard input is empty
stdout
foo bar