8a283d64b0
Changelog: https://github.com/com-lihaoyi/Ammonite/releases/tag/3.0.2 - support for Scala 2.13.16, 3.5.1, 3.3.4, 3.3.5 - added more Scala 3 keywords to the internal parser - various dependency updates PR: 285702 Reported by: Jens Grassel <freebsd-ports@jan0sch.de> (maintainer) Reviewed by: Siva Mahadevan <me@svmhdvn.name>
19 lines
418 B
Plaintext
19 lines
418 B
Plaintext
[
|
|
{ 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
|
|
}
|
|
]
|