Ballerina 🌟
function task2() returns string return "done";
curl http://localhost:9090/api/greeting/John Call external services using built-in clients. ballerina
type Employee record string name; int salary; ; Employee[] employees = [ name: "Alice", salary: 5000 , name: "Bob", salary: 6000 ]; function task2() returns string return "done"