A simple PureScript expression evaluation tool
Go to file
2022-11-02 04:11:31 -03:00
.github/workflows build: add test workflow 2022-11-02 04:11:31 -03:00
src refact: add Compiler module, improve ServerMock 2022-11-02 04:11:31 -03:00
test test: fix test module folder 2022-11-02 04:11:31 -03:00
.gitignore feat: bootstrap purs-nix project 2022-11-02 04:11:31 -03:00
flake.lock fix: add missing xhr ffi dep 2022-11-02 04:11:31 -03:00
flake.nix build: remove output options 2022-11-02 04:11:31 -03:00
LICENSE feat: Initial commit 2022-11-02 04:11:23 -03:00
package-lock.json fix: add missing xhr ffi dep 2022-11-02 04:11:31 -03:00
package.json fix: add missing xhr ffi dep 2022-11-02 04:11:31 -03:00
README.md doc: remove node example 2022-11-02 04:11:31 -03:00

purs-eval

A simple PureScript expression evaluation tool

Usage


# With npm
echo -e "module Main where\nimport Effect.Console (log)\nmain = log \"hello\"" | npx purs-eval

# With nix
echo -e "module Main where\nimport Effect.Console (log)\nmain = log \"hello\"" | nix run github:klarkc/purs-eval