import ballerina/io; public function main() { string s = "ballerina"; string t = s; io:println(`Are s and t equal? ${t == s}`); }