summaryrefslogtreecommitdiff
path: root/src/code/1/atoms
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-03-18 23:16:28 -0600
committerkballou <kballou@devnulllabs.io>2016-03-18 23:16:28 -0600
commitf6dbc3e24ae3aaccc2c2485441dca56e029b4ad5 (patch)
treef47b0eb607bbdb52d9baad36b2ba8c82d6416e4e /src/code/1/atoms
parentd7b08881034cb4ad72572fd167ae077d19ffebc9 (diff)
downloadfunc-w-elixir-f6dbc3e24ae3aaccc2c2485441dca56e029b4ad5.tar.gz
func-w-elixir-f6dbc3e24ae3aaccc2c2485441dca56e029b4ad5.tar.xz
Simplify syntax slides
We don't need to spend this much time on the basic syntax. Most of it can be read online or picked up along the way.
Diffstat (limited to 'src/code/1/atoms')
-rw-r--r--src/code/1/atoms17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/code/1/atoms b/src/code/1/atoms
deleted file mode 100644
index fe6b2b8..0000000
--- a/src/code/1/atoms
+++ /dev/null
@@ -1,17 +0,0 @@
-iex> :atom
-:atom
-iex> :ok
-:ok
-iex> :error
-:error
-iex> Foobar
-Foobar
-iex> :this_is_a_long_atom_dont_do_this
-:this_is_a_long_atom_dont_do_this
-
-iex> Atom.to_string :foo
-"foo"
-iex> String.to_atom "foo"
-:foo
-iex> String.to_atom "foo with a space and bar"
-:"foo with a space and bar"