eff icon indicating copy to clipboard operation
eff copied to clipboard

A functional programming language based on algebraic effect handlers

Results 7 eff issues
Sort by recently updated
recently updated
newest added

I think these are the warnings associated with my changes `+ /usr/local/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -I src/typing -I src -I src/utils -I src/runtime -I src/parsing -o src/typing/exhaust.cmx src/typing/exhaust.ml...

Compile the code to JavaScript using the `--compile-js` option.

https://github.com/matijapretnar/eff/blob/4c6bc57f7a9cf5a5c57aa0cfe8bfc82a55377cc2/src/utils/assoc.ml#L7 Many of the functions in `assoc.ml` can be proxied to OCaml stdlib: * `Assoc.lookup` => `List.assoc_opt` * `Assoc.remove` => `List.remove_assoc` * `Assoc.iter` => `List.iter` (has been done) * `Assoc.kmap`...

Hello all, I am having an issue with using Characters in Eff Whenever I use it, it says "unrecognised symbol" or "parser error" The main reason why I want to...

Hello all! Thank you in advance for any help! I was wondering whether or not it is possible to read and write to files in Eff?

It seems that effects are missing from types. Using the Eff REPL, when loading a file containing: ``` effect Whatever : int let foo x = let bar y =...