From 9641d4f2fba3e03c792a764545816b7b12053b97 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Wed, 30 Aug 2017 01:34:51 +0800 Subject: [PATCH] Update --- elixir.md | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/elixir.md b/elixir.md index e3d0fef20..48eece3af 100644 --- a/elixir.md +++ b/elixir.md @@ -145,25 +145,26 @@ end ### Primitives -| Sample | Type | -| --- | --- | -| `nil` | Nil/null | -| `true` _/_ `false` | Boolean | -| --- | --- | -| `23` | Integer | -| `3.14` | Float | -| --- | --- | -| `'hello'` | Char list | -| `<<2, 3>>` | Binary | -| `"hello"` | Binary string | -| `:hello` | Atom | -| --- | --- | -| `[a, b]` | List | -| `{a, b}` | Tuple | -| --- | --- | -| `%{a: "hello"}` | Map | -| `%MyStruct{a: "hello"}` | Struct | -| `fn -> ... end` | Function | +| Sample | Type | +| --- | --- | +| `nil` | Nil/null | +| `true` _/_ `false` | Boolean | +| --- | --- | +| `?a` | Integer (ASCII) | +| `23` | Integer | +| `3.14` | Float | +| --- | --- | +| `'hello'` | Char list | +| `<<2, 3>>` | Binary | +| `"hello"` | Binary string | +| `:hello` | Atom | +| --- | --- | +| `[a, b]` | List | +| `{a, b}` | Tuple | +| --- | --- | +| `%{a: "hello"}` | Map | +| `%MyStruct{a: "hello"}` | Struct | +| `fn -> ... end` | Function | ### Type checks