https://github.com/atnos-org/eff
Raw File
Tip revision: e8f16873866574705e1a038f0d590728c6dda73e authored by xuwei-k on 26 April 2020, 14:11:05 UTC
Scala 2.13.2
Tip revision: e8f1687
try-eff.sh
#!/bin/sh
test -e ~/.coursier/cr || (mkdir -p ~/.coursier && wget -q -O ~/.coursier/cr https://git.io/vgvpD && chmod +x ~/.coursier/cr)
~/.coursier/cr launch -q -P -M ammonite.Main \
  com.lihaoyi:ammonite_2.13.1:2.0.4 \
  org.atnos:eff_2.13:5.7.0 \
  -- --predef-code 'import org.atnos.eff._, all._, syntax.all._' < /dev/tty
back to top