Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2605 committed Apr 8, 2021
2 parents e3fae1f + d20e80f commit c693873
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/docs/variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ nav_order: 3
| Boolean | `true`, `false` | Fun fact: Boolean data types are named after George Boole. |
| List | `[1, 2, ‘hi’, true, nil]` | Lists can contain any data type or combination of data types. |
| Dictionary | `{"key1": 10, 2: "two", true: "true", nil: "nil"}` | Dictionaries have key-value pairs, like a dictionary (Word: Definition). Keys must be an immutable data type (strings, numbers, nil or boolean). Values can be any data type. |
| Set | `set("1", 1, "1")` | Sets are unordered collections of immutable, unique values. You can create a set with the `set()` function. |
| Nil | nil | Used to signify no value (much like null in other languages) |
| Result | Success, Error | See [Error Handling section.](/docs/error-handling) |
| Set | `set("1", 1, nil)` | Sets are unordered collections of immutable, unique values. You can create a set with the `set()` function. |
| Nil | `nil` | Used to signify no value (much like null in other languages) |
| Result | `Success`, `Error` | See [Error Handling section.](/docs/error-handling) |

## Declaring a variable

Expand Down

0 comments on commit c693873

Please sign in to comment.