Skip to content

Instantly share code, notes, and snippets.

@si14
Forked from anonymous/gist:4983641
Last active December 13, 2015 22:19
Show Gist options
  • Save si14/4983646 to your computer and use it in GitHub Desktop.
Save si14/4983646 to your computer and use it in GitHub Desktop.
https://www.erlang-solutions.com/downloads/download-erlang-otp
sudo apt-get build-dep erlang
sudo apt-get install libwxgtk2.8-0 libwxbase2.8-0
sudo dpkg -i ПАКЕТ
для 12.04:
sudo add-apt-repository ppa:cassou/emacs
sudo apt-get update
sudo apt-get install emacs24
-module(mod).
-compile([export_all]).
test(Name) -> {hello_world, Name}.
match({L, L, L}) -> 2.
map(F, L) -> something.
fact(X) -> fact(X, 1).
fact(1, A) -> A;
fact(X, A) -> fact(X - 1, A * X).
@si14
Copy link
Author

si14 commented Feb 19, 2013

@si14
Copy link
Author

si14 commented Feb 19, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment