-
I'm trying the following under Windows 7 x64, JDK 8u31:
1. Clone this repository.
2. Install it locally with `./gradlew clean install`.
3. Clone the [gradle-frege-example](https://github.com/mperry/gr…
-
A short look through the subprojects here show that at least some of this stuff is already built using Maven. Is there any chance that the rest could be wrapped in simple Maven projects and everything…
-
Here is what I did:
```
$ git clone https://github.com/Frege/frege-gradle-plugin.git
$ cd frege-gradle-plugin
$ $SHELL gradlew
Downloading http://services.gradle.org/distributions/gradle-2.3-all.zip…
-
After upgrading eclipse-plugin, I'm getting the same error on a number of my modules:
```
flipƒ59a13447 cannot be resolved or is not a field
```
in file/FregeEuler/src/Euler02.fr, line 1. Here's the…
muhuk updated
9 years ago
-
I had some trouble getting started with Frege. I tried both the "Getting Started" page as well as the "Using Frege in Intellij IDEA" page. After reading both, I did the following since the "Getting St…
-
I was reading `Using Frege in Intellij IDEA` and I had no problem with step 1 (associate Frege with Haskell filetype).
> Next you need the Frege jar (and the REPL jars if you want to use it) as a lib…
-
Currently hardcoded as bit positions. Should reach into Frege compiler enums and calculate them properly by name, and then support `:frege-options` in `project.clj`.
-
pasting the mentioned code into the online repl gives
```
frege> import frege.tools.Quick
3: unused import of frege.tools.Quick as Quick
frege> p_test = property $ \(n::Integer) -> odd n ^^ even n…
Dierk updated
9 years ago
-
Consider the following:
```
frege> :{
frege> nested :: Show a => Int -> a -> String
frege> nested 0 x = show x
frege> nested n x = nested (n-1) [x]
frege> :}
function nested :: Show a => Int -> a ->…
-
Section 1.1 mentions "seamless access to Java".
This is true in the sense that we usually do not need any wrapper classes but we do have "seams" in the type system through the native declaration - an…
Dierk updated
9 years ago