Thread
Stories related to "An optimizing compiler for a purely functional web app language" across the full archive.
This page has some solid but informal docs and a bunch of examples. There's also a [paper from the 2013 Dynamic Languages Symposium](http://hashcollision.org/whalesong-paper/paper.pdf).
For those of you who don't know, it's a stack-based language. That might help you read it.
flrc is newly open sourced by Intel
The Functional Language Research Compiler (FLRC) was designed to be a general compiler framework for functional languages. The only supported compiler that is being released is a Haskell Research Compiler (HRC).
The newly available github repository also lin...
In a purely nominative type system, values are members of a type if and only if they are declared to be members of that type. For example:
TYPE amount = integer;
VAR a amount, i integer;
Would declare `a` and `i` as distinct types; integer values could not be assigned to `a` and amoun...
GRIN Compiler - whole program optimizer for lazy and strict functional languages
(grin-compiler.github.io)
Hi all!
We are Martin and Matija, twin brothers, and we wanted to share our current project with you: Wasp (https://wasp-lang.dev). Wasp is a declarative language that makes it really easy to build full-stack web apps while still using the latest technologies such as React, Node.js and Prisma.
...