Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions exercises/concept/pursers-pantry/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ Hashtables in Factor are *associative arrays* — collections of
H{ { "coal" 1 } { "wood" 2 } } .
```

`H{ }` is an empty hashtable. Unlike arrays, hashtables are *mutable*
— `clone` first if you need to leave the original alone. Printing a
hashtable shows its entries, but the order isn't tied to insertion
order — hashtables are unordered.
`H{ }` is an empty hashtable. Hashtables are *mutable*, growing and
shrinking as you add and remove keys — `clone` first if you need to
leave the original alone. Printing a hashtable shows its entries, but
the order isn't tied to insertion order — hashtables are unordered.

## Reading

Expand Down
Loading