Select the types of activity you want to include in your feed.
1%% SPDX-License-Identifier: Apache-2.0 2%% SPDX-FileCopyrightText: 2021 The Gleam contributors 3 4-module(erlang_file). 5 6-export([main/0]). 7 8-include("erlang_header.hrl"). 9 10main() -> 11 String = header_function(), 12 <<"Hello, from the Erlang module!\n"/utf8, String/binary>>.