alpaca icon indicating copy to clipboard operation
alpaca copied to clipboard

Functional programming inspired by ML for the Erlang VM

Results 34 alpaca issues
Sort by recently updated
recently updated
newest added

This issue is for a discussion and collection of ideas at least related to modules and signatures. In issue #87 the distinction between OCaml's `open` and `include` came up and...

question
long view

In Erlang we can do the following to express two tuple items that are equal: case Tuple of {X, X} -> ... end In Alpaca we currently have to do...

Specific items: - modules Alpaca generates are prefixed with `alpaca_` - to pattern match correctly, records and maps passed to Alpaca need a particular `__struct__` field to exist.

Hi, cool project. Just an idea: Why not skip support for message send/receive? Mostly you use the gen_server.erl anyway and if you really want to send/receive you encapsulate that in...