For developers on OSX, you can now install the latest Frege compiler
via Homebrew (
http://mxcl.github.com/homebrew/):
$ brew install frege
Launching `fregec` from the command line will execute `exec java
-Xss1m -jar fregec.jar`, along with any arguments you supply. For
example:
$ echo 'package helloworld.HelloWorld where
import frege.IO
main :: [String] -> IO ()
main _ = print "Hello, world!"
' >> HelloWorld.fr
$ mkdir classes
$ fregec -d classes HelloWorld.fr
Remember to use Java 7, and enjoy!
James