The Frege programming language is a Haskell implementation on the Java/JVM world.
This project aims at exploring the Frege integration with Java using Gradle automation tool.
To generate the source code, then include it to the fat Jar along with the Frege jar file run the following command:
gradle clean generateJavaSrcFromFregeSrc fatJar
You will then get an executable Jar inside the build/libs
folder.
To run the previously generated executable Jar type the following command:
java -jar build/libs/FregeGradleInvestigation-fatJar-1.0.jar
Thanks to Dierk for the Hello Frege project.