RosettaCodeData/Task/Copy-a-string/Ballerina/copy-a-string.ballerina

8 lines
143 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
import ballerina/io;
public function main() {
string s = "ballerina";
string t = s;
io:println(`Are s and t equal? ${t == s}`);
}