3 pieces, 1 year // only English identifiers allowed (also singular forms) - 1 piece is no valid constant
2.35 m // constant CX_VALUE (2,35 m)
Var(m) // variable m gets declared
-> m // save constant in 'm'
1.5 m // brings CX_NUMERIC (1,5) and CX_VALUE (2,5 m) into the stack
"CX_PERSON::access[0].city" // is identical to
Path(CX_PERSON::access[0].city)
"CX_STOCK_SPACE::EvaluateTotal(\"current.quantity * Dimension(\"CX_STOCK_ACCOUNT\",0).purchase.pricePer\")"
SetFormat // is wrong and has to be written as
Path(CX_STOCK_SPACE::EvaluateTotal("current.quantity * Dimension(\"CX_STOCK_ACCOUNT\",0).purchase.pricePer"))
SetFormat //