This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| % Example on how to get all Erlang formats from source code to disassembled bytecode | |
| % Erlang Source --> Erlang AST --> Erlang Expanded AST --> Core Erlang --> BEAM Bytecode | |
| %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
| %%% First the original module | |
| %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
| -module(add). | |
| -export([add/2]). |
OlderNewer