class classExample (
    _in1
    _in2
    _in3
)
method classExample showArray (in) {
    + 123 1
    + 1233 444
}
method classExample constructor (in1 in2) {
    * 131 1
}

define xxx [new classExample 1 2] #creates an object

echo [$xxx showArray 1 ]