RosettaCodeData/Task/Hello-world-Graphical/Ballerina/hello-world-graphical.ballerina
2026-04-30 12:34:36 -04:00

9 lines
248 B
Text

import ballerina/http;
service / on new http:Listener(9090) {
// This function responds with `string` value `Hello, World!` to HTTP GET requests.
resource function get greeting() returns string {
return "Goodbye, World!";
}
}