Skip to content

Instantly share code, notes, and snippets.

@auxiliaire
Created May 2, 2021 12:31
Show Gist options
  • Select an option

  • Save auxiliaire/c56e71622bf1c40bdca59eb94ee39b42 to your computer and use it in GitHub Desktop.

Select an option

Save auxiliaire/c56e71622bf1c40bdca59eb94ee39b42 to your computer and use it in GitHub Desktop.
Say Hello to Erlang
-module(hello).
-export([
hello/0,
]).
%% Hello world
hello() ->
io:format("Hello, world!~n").
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment