This commit is contained in:
Rico Sta. Cruz 2017-08-30 01:32:59 +08:00
parent ea4745d026
commit d21f0fae07
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
1 changed files with 11 additions and 0 deletions

View File

@ -145,14 +145,22 @@ 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 |
@ -194,6 +202,9 @@ left <> right # concat string/binary
left =~ right # regexp
```
Modules
-------
### Importing
```elixir