1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00
freebsd-ports/devel/ammonite/pkg-message
2023-10-19 03:07:30 -04:00

19 lines
416 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.9.1")
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
}
]