An experimental language with minimal syntactical sugar, written in Haskell with Megaparsec.
def example() do
1
end
It transpiles to JavaScript.
function example() {
return 1;
}
See the examples folder for more examples.
- Install stack
- Run
stack buildto build the transpiler - Run
stack run examples/sort.lowcal | node -to run a transpiled program!