Menu

Compilation

Bruce Kissinger

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}

Related

Wiki: Home

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.