init commit

This commit is contained in:
2026-03-09 23:09:46 -04:00
parent 5cbc493cc5
commit 5da77e3360
73 changed files with 9935 additions and 103 deletions
+16
View File
@@ -0,0 +1,16 @@
(ns Atom
"Elixir Atom module — atom operations.
In CljElixir: (Atom/to-string :hello), etc.
Atoms are constants whose value is their name.")
(defn to-string
"Converts an atom to a string.
(Atom/to-string :hello) ;=> \"hello\"
(Atom/to-string :Elixir.MyModule) ;=> \"Elixir.MyModule\""
[atom])
(defn to-charlist
"Converts an atom to a charlist.
(Atom/to-charlist :hello) ;=> 'hello'"
[atom])