summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-03-18 08:41:32 -0600
committerkballou <kballou@devnulllabs.io>2016-03-18 08:41:32 -0600
commitd7b08881034cb4ad72572fd167ae077d19ffebc9 (patch)
tree28258e19336414f724f172de2f3ba3fc1ebb78bd
parentfe9252aaa45f7480bd1daffca3f1a6c471e63c53 (diff)
downloadfunc-w-elixir-d7b08881034cb4ad72572fd167ae077d19ffebc9.tar.gz
func-w-elixir-d7b08881034cb4ad72572fd167ae077d19ffebc9.tar.xz
Remove iex numbers
This usually is distracting and hard to maintain, it's why the rest of the code examples dropped it, this was just the first one.
-rw-r--r--src/code/1/numbers16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/code/1/numbers b/src/code/1/numbers
index 9489e00..d13d948 100644
--- a/src/code/1/numbers
+++ b/src/code/1/numbers
@@ -1,18 +1,18 @@
-iex(1)> 42
+iex> 42
42
-iex(2)> -42
+iex> -42
-42
-iex(3)> 0
+iex> 0
0
-iex(4)> 1.0
+iex> 1.0
1.0
-iex(5)> 6.674e-11
+iex> 6.674e-11
6.674e-11
-iex(6)> 0b1010
+iex> 0b1010
10
-iex(7)> 0o755
+iex> 0o755
493
-iex(8)> 0xFF
+iex> 0xFF
255
iex> 0 + 1