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

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; }
example0 = new example(1, '', '', '', '', 26, new Array('alpha',-1) );
example1 = new example('', 2, '', '', 25, '', new Array('beta',-1.1) );
example2 = new example('', '', 3, 24, '', '', new Array('charlie',0.1) );