Skip to content

Instantly share code, notes, and snippets.

@keizer619
Created August 17, 2023 08:45
Show Gist options
  • Save keizer619/a16b7033ebb46ea218f1b416d074d590 to your computer and use it in GitHub Desktop.
Save keizer619/a16b7033ebb46ea218f1b416d074d590 to your computer and use it in GitHub Desktop.
Let's write the Hello World program in Ballerina. To run this sample, place the source code in a file named hello_world.bal and use the bal run command.
import ballerina/io;
public function main() {
io:println("Hello, World!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment