An open API service indexing awesome lists of open source software.

https://github.com/mbrock/HBEAM

Prototypical Haskell virtual machine for Erlang's BEAM bytecode
https://github.com/mbrock/HBEAM

Last synced: 8 months ago
JSON representation

Prototypical Haskell virtual machine for Erlang's BEAM bytecode

Awesome Lists containing this project

README

          

HBEAM
=====

Hello! This is a sketchy implementation of a BEAM emulator. It is supposed
to read & evaluate Erlang bytecode files.

Right now it doesn't understand very much, but if you have the simplest
possible factorial function exported from `mymath.beam` — it's included — you
can run it like this:

$ hbeam mymath factorial '[EVInteger 6]'
... after lots of debug spam ...
Return value: EVInteger 720

Wow!