summaryrefslogtreecommitdiff
path: root/inttest/rebar3_deps1/a.erl
blob: 897b963c2afd6ee404408504095b720e5eb2c55a (plain)
1
2
3
4
5
6
7
8
-module(a).

-export([hello/0]).

-include_lib("b/include/b.hrl").

hello() ->
    io:format("~s\n", [?HELLO]).