Erlang/OTP http://erlang.org
  • Erlang 71.2%
  • C 17.2%
  • C++ 8.2%
  • Makefile 0.8%
  • Shell 0.5%
  • Other 2%
Find a file
2026-07-24 11:33:06 +02:00
.devcontainer Update copyright year 2025-04-16 09:08:50 +02:00
.github Merge pull request #11084 from skunkwerks/dch/fix-freebsd-build 2026-06-17 10:16:33 +02:00
.ort/config update SPDX SBOM to 2.3 2025-12-02 09:25:47 +01:00
bin
bootstrap Merge branch 'maint' 2026-07-03 05:52:09 +02:00
erts Merge branch 'maint' 2026-07-23 08:48:00 +02:00
FILE-HEADERS update SPDX SBOM to 2.3 2025-12-02 09:25:47 +01:00
HOWTO fixes references to old openvex.table file 2026-06-16 15:37:03 +02:00
lib Merge branch 'maint' 2026-07-24 11:33:06 +02:00
LICENSES add SGI-B-2.0 license to licenses folder 2025-08-14 12:45:11 +02:00
make Merge branch 'maint-28' into maint 2026-07-02 16:22:11 +02:00
plt
scripts Merge branch 'maint' 2026-06-22 12:46:41 +02:00
system/doc removed_30.md: Mention removal of old-style guard tests 2026-06-07 08:11:53 +02:00
xcomp gh: Fail macos build on build-step failure 2025-08-14 16:58:33 +02:00
.dir-locals.el Update copyright year 2025-04-16 09:08:50 +02:00
.editorconfig Update copyright year 2025-04-16 09:08:50 +02:00
.elp.toml Update copyright year 2025-04-16 09:08:50 +02:00
.formatter.exs
.gitattributes
.gitignore Remove testing of compatibility with OTP 26 2026-05-21 09:18:52 +02:00
.gitpod.yml Update copyright year 2025-04-16 09:08:50 +02:00
.mailmap ycf: Standardize and fix license headers 2025-04-04 10:45:09 +02:00
.ort.yml fix licenses for wx gen files 2025-08-14 12:45:11 +02:00
AUTHORS otp: Add license header to all AUTHOR files 2025-04-04 10:45:09 +02:00
configure Update copyright year 2026-04-14 15:02:13 +02:00
configure.src Update copyright year 2026-04-14 15:02:13 +02:00
CONTRIBUTING.md otp: sbom adds comment to license files 2025-05-19 12:55:47 +02:00
erl-build-tool-vars.sh Update copyright year 2025-04-16 09:08:50 +02:00
erlang_ls.config otp: Standardize all license headers for files in src and include 2025-04-04 10:42:48 +02:00
LICENSE.txt
Makefile.in Merge pull request #10346 from vances/start_erl-fail-#10342 2026-04-20 09:07:03 +02:00
otp_build otp: Fix otp_build to respect TYPE and FLAVOR 2025-06-17 13:30:59 +02:00
otp_patch_apply otp: Fix patch apply to work on vsn files with comments 2025-06-16 16:11:20 +02:00
OTP_VERSION Updated OTP version 2026-07-02 10:02:42 +02:00
otp_versions.table Merge branch 'maint-27' into maint 2026-07-02 16:49:18 +02:00
prebuild.delete
prebuild.skip
README.md
renovate.json5 Merge branch 'maint' into master 2026-03-04 10:29:31 +01:00
SECURITY.md Fix typo in SECURITY.md 2025-12-07 14:13:06 -05:00
sys.config add license header 2026-02-12 11:45:37 +08:00
TAR.include

Erlang/OTP

Erlang is a programming language and runtime system for building massively scalable soft real-time systems with requirements on high availability.

OTP is a set of Erlang libraries, which consists of the Erlang runtime system, a number of ready-to-use components mainly written in Erlang, and a set of design principles for Erlang programs. Learn more about Erlang and OTP.

Learn how to program in Erlang.

Examples

There are several examples on the website to help you get started. The below example defines a function world/0 that prints "Hello, world" in the Erlang shell:

-module(hello).
-export([world/0]).

world() -> io:format("Hello, world\n").

Save the file as hello.erl and run erl to enter the Erlang shell to compile the module.

Erlang/OTP 24 [erts-12.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit]

Eshell V12.2  (abort with ^G)
1> c(hello).
{ok,hello}
2> hello:world().
Hello, world
ok

Learn more about the Erlang syntax of modules, functions and expressions on Erlang.org.

Installation

Binary Distributions

Erlang/OTP is available as pre-built binary packages by most OS package managers.

apt-get install erlang

Compiling from source

To compile Erlang from source, run the following commands. The complete building and installation instructions can be found here.

git clone https://github.com/erlang/otp.git
cd otp

Checkout the branch or tag of your choice

git checkout maint-27    # current latest stable version

Configure, build and install

./configure
make
make install

Alternatively, you can use Kerl, a script that lets you easily build Erlang with a few commands.

Bug Reports

Please visit our GitHub Issues page for reporting bugs. The instructions for submitting bugs reports can be found here.

Security Disclosure

Please do not report security vulnerabilities through public channels, like GitHub issues, discussions, or pull requests.

Please disclose the security issues following our SECURITY guidelines.

Contributing

We are grateful to the community for contributing bug fixes and improvements. Read below to learn how you can take part in improving Erlang/OTP. We appreciate your help!

Contribution Guide

Read our contribution guide to learn about our development process, how to propose fixes and improvements, and how to test your changes to Erlang/OTP before submitting a pull request.

Help Wanted

We have a list of Help Wanted bugs that we would appreciate external help from the community. This is a great place to get involved.

Awesome-Erlang

You can find more projects, tools and articles related to Erlang/OTP on the awesome-erlang list. Add your project there.

License

Erlang/OTP is released under the Apache License 2.0.

For any license inquiry, please send an email to opensource@ericsson.com

%CopyrightBegin%

SPDX-License-Identifier: Apache-2.0

Copyright Ericsson AB 2010-2025. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

%CopyrightEnd%