mirror of
https://github.com/rowtype-yoga/purs-eval.git
synced 2024-11-30 02:45:58 +03:00
A simple PureScript expression evaluation tool
.github/workflows | ||
src | ||
test | ||
.gitignore | ||
flake.lock | ||
flake.nix | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md |
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