shithub: orca

ref: dfcae4a51589a86187a548069241a09615bdb2f6
dir: /README.md/

View raw version
C engine for the ORCΛ programming environment, with a commandline interpreter.

## Prerequisites

libc, POSIX, C99 compiler, `make`. Tested to build on Linux and Mac (gcc,
clang.) No native Windows port yet, but it will probably build with cygwin
already.

## Build

```sh
make [debug or release, default is debug]
```

The built binary will be placed at `build/[debug or release]/orca`

Clean:
```sh
make clean
```
Removes `build/`

## Run

```sh
orca [-t timesteps] infile
```

You can also make orca read from stdin:
```sh
echo -e "...\na34\n..." | orca -t 1 /dev/stdin
```