Can Erlang file create .beam
file for the imported Erlang file?
For example I have test1.erl
and test2.erl
file and test1.erl
is imported in test2.erl
. Then compiling test2.erl
using
erlc test2.erl
Then, will it create only test2.beam
or both test1.beam
and test2.beam
?
1条答案
按热度按时间0x6upsns1#
您需要编译两个文件
test1.erl
和test2.erl
。