Facebook X (Twitter) Instagram
    TecAdmin
    • Home
    • FeedBack
    • Submit Article
    • About Us
    Facebook X (Twitter) Instagram
    TecAdmin
    You are at:Home»Programming»How To Install Erlang on Fedora 35/34/33

    How To Install Erlang on Fedora 35/34/33

    By RahulApril 18, 20222 Mins Read

    Erlang is a programming language used to build massively scalable soft real-time systems with requirements on high availability. Erlang runtime system has built-in support for concurrency, distribution and fault tolerance.

    This tutorial will help you to install erlang on Fedora Linux systems.

    Step 1 – Install Erlang on Fedora

    Erlang is available under the default repositories. You can simply install the erlang package on your system and run running the following command. This will install other required libraries as well.

    sudo dnf install erlang 
    

    Step 2 – Check Erlang Version

    Type erl on the terminal. This will open the Erlang shell and show you the version.

    erl  
    
    Output
    Erlang/OTP 23 [erts-11.2.2.2] [source] [64-bit] [smp:1:1] [ds:1:1:10] [async-threads:1] [hipe]
    
    Eshell V11.2.2.2  (abort with ^G)
    

    Press CTRL + C twice to exit from the Erlang shell.

    Step 3 – Erlang Hello World Program

    Let’s start with hello world program on erlang. First create file helloworld.erl with following content.

    nano helloworld.erl 
    

    add the following contnet.

    helloworld.erl
    % hello world program -module(helloworld). -export([start/0]). start() -> io:fwrite("Hello World!\n").

    Now compile the hello world program using below command.

    erlc helloworld.erl 
    

    The above command will create a file helloworld.beam in the current directory. You can run your program now.

    erl -noshell -s helloworld start -s init stop 
    
    Hello World!
    

    Reference:
    https://packages.erlang-solutions.com/erlang/

    erlang fedora
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp

    Related Posts

    Understanding the __name__ Variable in Python

    Python Script to Send an Email via SMTP Server

    Python Lambda Functions – A Beginner’s Guide

    Add A Comment

    Leave A Reply Cancel Reply

    Advertisement
    Recent Posts
    • Difference Between Full Virtualization vs Paravirtualization
    • Virtualization vs. Containerization: A Comparative Analysis
    • Using .env Files in Django
    • Using .env File in FastAPI
    • Setting Up Email Notifications for Django Error Reporting
    Facebook X (Twitter) Instagram Pinterest
    © 2023 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.