Fork of daniellemaywood.uk/gleam — Wasm codegen work
319 B
13 lines
1-module(submodule_ffi).
2
3-export([main/0, main2/0]).
4
5-include("submodule_ffi_header.hrl").
6
7main() ->
8 String = header_function(),
9 <<"Hello, from the nested Erlang module!\n"/utf8, String/binary>>.
10
11main2() ->
12 String = header_function(),
13 <<"Hello again, from the nested Erlang module!\n"/utf8, String/binary>>.