Dierk on master
update README.adoc (compare)
Dierk on master
added Frege_Gradle_Tasks.png (compare)
Dierk on master
update images for the frege wik… (compare)
Dierk on master
compiles and runs with frege-3.… upgrading to gradle 6.5 add images for the frege wiki p… (compare)
Dierk on master
remove the duplicated line abou… small documentation clarificati… updating the comment around App… (compare)
unJust
function above, it would infer Maybe{Just} a -> a
, and this would preclude using the function on any value that can't be proven at compile time to be a Just
SerializableBiFunction toSerializable(frege...Func<...> fun)
or its equivalent in Frege.
frege/runtime/Lazy
whenever I try to run the scripting engine. The environment is Java 8, with frege version 3.23.288-gaa3af0c and frege-interpreter version 1.2.1-SNAPSHOT. Is there anything I should know about or anywhere better to get a more up-to-date frege version?
clj-new
(the CLI equivalent). Both that and the frege-lein-plugin
are based on 3.24-7.100 which is available on Sonatype (although browsing oss.sonatype.org I can't actually see anything except 3.23... which makes me wonder whether I published later versions on Clojars?)
With the deprecation of mutable
has made my native definitions now look very clunky.
I went from:
data View = native mutable android.view.View where"
native findViewById :: View -> Int -> IO View
To:
data View = native android.view.View where"
native findViewById :: MutableIO View -> Int -> IO (MutableIO View)
Is there a way to make this look better syntactically?