[a121] ++x.y.z error Topic is solved

Report problems with documented functionality
User avatar
aseiot
Posts: 79
Joined: 05 Mar 2017, 04:25

[a121] ++x.y.z error

Post by aseiot » 10 Aug 2020, 05:43

Code: Select all

x:={y : {z : 0} }

MsgBox x.y.z
MsgBox ++x.y.z
MsgBox x.y.z
Report Error:
Error: Expected a Number but got an Object.

Line#
003: x := {y : {z : 0} }
005: MsgBox(x.y.z)
---> 006: MsgBox(++x.y.z)
007: MsgBox(x.y.z)
008: Exit

Try to continue anyway?

User avatar
aseiot
Posts: 79
Joined: 05 Mar 2017, 04:25

Re: [a121] ++x.y.z error  Topic is solved

Post by aseiot » 11 Aug 2020, 08:09

Thanks, fixed

Post Reply

Return to “Bug Reports”