Skip to content

Instantly share code, notes, and snippets.

@BluePyTheDeer251
Last active November 24, 2024 16:27
Show Gist options
  • Save BluePyTheDeer251/3eaa3eaa93d266382b375451ece7d714 to your computer and use it in GitHub Desktop.
Save BluePyTheDeer251/3eaa3eaa93d266382b375451ece7d714 to your computer and use it in GitHub Desktop.
Me practicing lists in Clojure.
(def myList '(251 45))
(first myList)
(println myList)
(def myList2 '("yes" "no" "maybe"))
(third myList2)
(println myList2)
(println myList myList2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment