summaryrefslogtreecommitdiff
path: root/src/code/1/binaries
diff options
context:
space:
mode:
Diffstat (limited to 'src/code/1/binaries')
-rw-r--r--src/code/1/binaries13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/code/1/binaries b/src/code/1/binaries
deleted file mode 100644
index 1ac8fbf..0000000
--- a/src/code/1/binaries
+++ /dev/null
@@ -1,13 +0,0 @@
-iex> <<1, 2, 3>>
-<<1, 2, 3>>
-iex> <<255, 255, 256>>
-<<255, 255, 0>>
-iex> <<256 :: size(16)>>
-<<1, 0>>
-iex> <<"Hello, 世界" :: utf8>>
-"Hello, 世界"
-
-iex> <<1, 2>> <> <<3>>
-<<1, 2, 3>>
-iex> "Hello, " <> "World"
-"Hello, World"