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
- Host: GitHub
- URL: https://github.com/mbrock/HBEAM
- Owner: mbrock
- License: gpl-3.0
- Created: 2011-06-29T14:21:52.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2011-07-08T12:45:18.000Z (over 14 years ago)
- Last Synced: 2024-08-04T01:25:40.020Z (over 1 year ago)
- Language: Haskell
- Homepage:
- Size: 168 KB
- Stars: 27
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
- awesome-list - HBEAM
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!