Skip to content
/ bada Public

Simple Programming Language that compiles to BEAM bytecode

Notifications You must be signed in to change notification settings

tsoding/bada

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bada

Simple Programming Language that compiles to BEAM bytecode.

Quick Start

Install dependencies:

Compile the Compiler (we don't use Cargo because we don't have any thirdparty dependencies yet):

$ rustc ./src/bada.rs

Compile an example using the Compiler:

$ ./bada ./examples/bada.boom

Load the example into Erlang environment:

$ erl
> code:add_path("./examples/").
> code:load_file(bada).
> bada:hello().
> bada:world().

To reload the Example module:

> code:purge(bada), code:load_file(bada).

About

Simple Programming Language that compiles to BEAM bytecode

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published