RosettaCodeData/Task/Hello-world-Standard-error/Ballerina/hello-world-standard-error.ballerina
2025-06-11 20:16:52 -04:00

5 lines
96 B
Text

import ballerina/io;
public function main() {
io:fprintln(io:stderr, "Goodbye, World!");
}