freebsd-ports/devel/ammonite/pkg-message
Jens Grassel e5640325d4
devel/ammonite: Update to 2.5.5
PR:		268637
2022-12-29 22:55:03 +08:00

18 lines
416 B
Text

[
{ 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.9.0")
interp.load.ivy("org.typelevel" %% "cats-core" % "2.9.0")
// This @ is necessary for Ammonite to process the `interp.load.ivy`
// before continuing.
@
import cats._
import cats.data._
import cats.syntax.all._
EOM
}
]