aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2021-05-05 10:24:16 +0100
committerLouis Pilfold <louis@lpil.uk>2021-05-05 10:24:16 +0100
commit5c9e07bff452945d0e769450509774809da348f9 (patch)
tree1aeaad7ce58d73ffd693a96ad0b3f5b209e276e4 /README.md
parent015d1f73c2876cb31a43bb0c1d983ceeb23d633c (diff)
downloadgleam_stdlib-5c9e07bff452945d0e769450509774809da348f9.tar.gz
gleam_stdlib-5c9e07bff452945d0e769450509774809da348f9.zip
v0.15.0v0.15.0
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 3 insertions, 10 deletions
diff --git a/README.md b/README.md
index 0545456..a55969d 100644
--- a/README.md
+++ b/README.md
@@ -13,21 +13,21 @@ Add `gleam_stdlib` to the deps section of your `rebar.config` or `mix.exs`
```erlang
{deps, [
- {gleam_stdlib, "0.14.0"}
+ {gleam_stdlib, "~> 0.15.0"}
]}
```
```elixir
defp deps do
[
- {:gleam_stdlib, "~> 0.14.0"},
+ {:gleam_stdlib, "~> 0.15.0"},
]
end
```
## Usage
-Import the modules you want to use first
+Import the modules you want to use and write some code!
```rust
import gleam/string
@@ -41,10 +41,3 @@ fn more_usage() {
contains([1, 2, 3], any: 2)
}
```
-
-## Quick reference
-
-```sh
-# Run the unit tests
-rebar3 eunit
-```