Created
August 17, 2023 08:45
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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