Last active
November 21, 2024 18:50
-
-
Save BluePyTheDeer251/7393b00645a70648ed5252f3c001f3d8 to your computer and use it in GitHub Desktop.
What a message system would be like in Clojure.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn messagesys [message] | |
(println "Your message: ") | |
(str message)) | |
(messagesys "I love Clojure <3") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment