The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

// 5
function example (a, b, c, x, y, z, data) {
this.a = a; this.b = b; this.c = c; this.x = x; this.y = y; this.z = z; this.data = data; }
alpha = new example(1, '', '', '', '', 26, ['alpha',-1] );
bravo = new example('', 2, '', '', 25, '', ['beta',-1.1] );
// 10
charlie = new example('', '', 3, 24, '', '', ['charlie',0.1] );