Get started with Ballerina

Let’s set up a Ballerina development environment and write a simple Ballerina program.

Set up the prerequisites

To run this tutorial, you need the following prerequisites:

  1. Ballerina 2202.0.0 (Swan Lake) or greater
  2. A text editor

    Tip: Preferably, Visual Studio Code with the Ballerina extension installed.

Meet bal

bal is the Ballerina build tool and package manager. Among other things, bal helps you to create, build, test, and run your project. The latest bal tool version is available with the latest Ballerina installation.

Open your terminal, and run the following commands to make sure everything is ready.

$ bal
$ bal version

Create a new project

Let’s write a Ballerina program, which prints Hello, World!. Use the bal new command to create a new Ballerina project.

$ bal new greeter

This command creates a new directory called greeter with the content below.

greeter/
├── Ballerina.toml
└── main.bal
  • The Ballerina.toml file contains metadata, which describes your project. Also, the bal tool uses the Ballerina.toml file to identify the root of a project.
  • The main.bal file is a source file and it contains the Ballerina code that prints Hello, World! to the console. You can add any number of source files into the greeter directory.

Say Hello, World!

You can open the project directory in your text editor. If you are using VS Code, run code . from inside the greeter directory. Then, open the main.bal file to see the generated source.

import ballerina/io;

public function main() {
    io:println("Hello, World!");
}

In this code:

  • The first line is an import statement, which makes the functionality in the ballerina/io module available to your program. This module contains functions to write to the console, read from the console, and perform read/write operations on the files.
  • The main function is your program’s entry point, and you can execute it by running the program.
  • This function contains a statement, which prints Hello, World! to the console. This statement calls the println function in the io module with "Hello, World!" as an argument.

Info: To learn more about the language, see Language basics.

Run the project

Run bal run in your terminal to run this project.

$ bal run
Compiling source
	example/greeter:0.1.0

Running executable

Hello, World!

Alternatively, you can generate an executable program with bal build,

$ bal build
Compiling source
	example/greeter:0.1.0

Generating executable
	target/bin/greeter.jar

and then, use bal run as follows.

$ bal run target/bin/greeter.jar
Hello, World!

Write a simple REST API

Now, let’s change the greeter application to a REST API. Ballerina has first-class abstractions for services, resources, etc., and they make network service development easier and more fun.

Replace the main.bal content with the code below.

import ballerina/http;

listener http:Listener httpListener = new (8080);

service / on httpListener {
    resource function get greeting() returns string { 
        return "Hello, World!"; 
    }

    resource function get greeting/[string name]() returns string { 
        return "Hello " + name; 
    }
}

Let’s take a moment to digest the new constructs in this code:

  • The http module provides high-level abstractions to work with the HTTP protocol.
  • The listener declaration creates a new HTTP listener with the port 8080. The listener is the entity, which receives the network input and then routes it to the attached service(s).
  • The service declaration specifies the listener to which the service gets attached and a collection of remotely accessible methods. There are two kinds of methods as resource and remote.
  • Services use remote methods to expose services in a procedural style and they are named by verbs whereas resource methods are used for data-oriented protocols and they are named by nouns.
  • In this example, there are two resource methods: The first one responds to HTTP GET requests with the /greeting path and the other one responds to GET requests with the /greeting/{name} path.
  • These resource methods return a string value, which maps to the text/plain content-type in the HTTP response.

Info: To learn more about services, see Network interaction.

Running the simple REST API

Let’s run this project in your terminal:

$ bal run
Compiling source
	example/greeter:0.1.0

Running executable

Also, run the commands below in another terminal window to invoke the REST API.

$ curl localhost:8080/greeting
Hello, World!

$ curl localhost:8080/greeting/Ballerina
Hello Ballerina

Learn more

In this guide, you set up your development environment and wrote two Ballerina programs. For more learning resources, see Learn.