// exbl6.bal example create and use functions and procedures // ballerina run exbl6.bal import ballerina/io; function add(int a, int b) returns (int) { return a + b; } // end function add function prt_vec(string name, float[] a) { foreach int i in 0..