-
What I have been thinking is to find a way to make Frege type system extensible. This way it would be able to support Dependent Types, Dependent Object Types, and perhaps better integrate with Java Ty…
-
Attempting to interface with a native method _$getType$_ causes the compiler to look up the method on the representation of the Frege class instead of the native Java class. Here's the snippet:
```
-…
-
Is it possible to aim for full automated generation by v1. Assume all Java objects can be null unless they have appropriate annotations. Also additional information about assumption or conversion stra…
-
Hi,
I just tried Frege and fregIDE for the first time.
I noticed following problem:
Running Frege-programs in Eclipse works ok, but I cannot use those same compiled files in command line because one…
-
In [this](https://groups.google.com/forum/#!msg/frege-programming-language/aBJkJXOnUh4/1qi550sRoHIJ) discussion I see mention of JSR 233 compatibility for Frege scripting, and the linked frege-scripti…
-
When no files are mentioned in the plugin configuration, an NPE is generated:
```
[ERROR] Failed to execute goal com.theoryinpractise.frege:frege-maven-plugin:1.0.3:compile (compile) on project freg…
-
Is it possible to have a graphical IDE like Gem Cutter for Open Quark (Haskell for JVM implementation)
-
Given a Java class:
```
import frege.prelude.PreludeBase.TEither;
public class Bar {
public static TEither bar(final String s) {
return TEither.DRight.mk(0);
}
}
```
The Frege module below …
-
Take the following example, which serves to demonstrate higher rank functions:
```
foo :: (forall a.[a]->[a]) -> ([Int], [Bool])
foo f = (f [1,2], f [true,false])
```
This code checks just fine in t…
-
Whilst working on some code samples for a presentation, I found the following code will cause the FregeREPL to dive into an endless loop when trying to call `show cust`.
```
type Currency = String
da…