Skip to content

Instantly share code, notes, and snippets.

@adolfont
Last active July 26, 2023 21:40
Show Gist options
  • Save adolfont/9469b8b0744d1be942104fe0ad623078 to your computer and use it in GitHub Desktop.
Save adolfont/9469b8b0744d1be942104fe0ad623078 to your computer and use it in GitHub Desktop.
Erlang on Livebook 0.10.0

Erlang on Livebook 0.10.0

Some Erlang code

Age = 20,
Weight = 100,
Height = 180,
IMC = fun (W, H) -> W/(H*H) end,
IMC(Weight, Height).

An Erlang module

-module(maths).
-export([sumy/2]).

sumy(X, Y) -> X+Y.
maths:sumy(10,20).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment