Skip to content

Commit 5a32256

Browse files
committed
Replace br tags with whitespace and improve REPL introduction
1 parent 5595c4f commit 5a32256

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

collections/_posts/2023-04-03-typelevel_toolkit.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,8 @@ This creates a very nice feedback loop!
4545
# Putting the fun in functional
4646

4747
[Typelevel Toolkit](https://typelevel.org/toolkit/) uses `scala-cli` and Typelevel libraries to provide a runway for your next Scala script or command-line interface. You can use the toolkit with `scala-cli` with just a single line and you'll get [Cats Effect](https://typelevel.org/cats-effect/), [fs2](https://fs2.io) and a few other libraries to develop scripts quickly using pure functional programming.
48-
<br />
48+
4949
Typelevel Toolkit shines with `scala-cli`, but it can also be used by sbt or mill if that is preferred.
50-
<br /><br />
5150
More concretely this means your next ad-hoc script won't be Bash or Python spaghetti, but Scala code that can be a joy to hack on as time goes on, without the boilerplate.
5251

5352
You can use the toolkit by using a
@@ -92,10 +91,10 @@ scala-cli Main.scala --js
9291
scala-cli Main.scala --native
9392
```
9493

95-
If you just want to explore Typelevel Toolkit, you can open up a REPL using a file that has the `using dep "org.typelevel::toolkit::0.0.4"` directive and you can use all the libraries in the REPL:
94+
If you just want to explore Typelevel Toolkit, you can quickly open a REPL using the following command:
9695

9796
```sh
98-
scala-cli repl Main.scala
97+
scala-cli repl --dep "org.typelevel::toolkit::0.0.4"
9998
```
10099

101100
With `scala-cli`, there a few other cool things you get here:

0 commit comments

Comments
 (0)