Workflow Execution Engine Wiki
High performance workflow with strong support for parallel tasks
Brought to you by:
bkissinger
There are three main files that make up the WEE source code: wee_lexer.erl, wee_parser.erl, and wee.erl.
To compile these source files, you first need a recent version of the Erlang language distribution installed. You can obtain Erlang at http://www.erlang.org/.
Next, start an Erlang command line shell by entering the command erl.
Finally, compile each of the source files using the c command as shown below.
Eshell V5.9 (abort with ^G)
1> c(wee_lexer).
{ok,wee_lexer}
2> c(wee_parser).
{ok,wee_parser}
3> c(wee).
{ok,wee}