// exbl1.bal example print string, integer, float, boolean // ballerina run exbl1.bal import ballerina/io; public function main (string... args) { io:println("exbl1.bal running"); string hi = "Welcome to the Ballerina language"; io:println(hi); int n = 3; io:println("n=",n); float x = 1.0; float y = 1.0e+100; // no double io:println("x=",x,", y=",y); boolean bt = true; boolean bf = false; io:println("bt=",bt,", bf=",bf); io:println("exbl1.bal ends"); } // end exbl1.bal