blob: d24c4d1bf14ed2915a7233cf85ba497218b100df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[
{ type: install
message: <<EOM
To use ammonite fully you should setup a configuration file
~/.ammonite/predef.sc. Below is an example:
interp.load.ivy("com.lihaoyi" %% "os-lib" % "0.11.4")
interp.load.ivy("org.typelevel" %% "cats-core" % "2.13.0")
// This @ is necessary for Ammonite to process the `interp.load.ivy`
// before continuing.
@
import cats.*
import cats.data.*
import cats.syntax.all.*
EOM
}
]
|