Page 1 of 1

[PB5.43LTS] Maths operators and structures

Posted: Wed Aug 24, 2016 7:19 am
by marcoagpinto
Hello!

I was doing some maths operations and I noticed that when we type a structure it doesn't autosuggest after the \.

Code: Select all

Structure test
  light.l
EndStructure
Global test.test
test\light=Random(100)
Debug "Test (%):"+Str(1*test\light)
In the example above, when I type: "test\" after the "1*" it doesn't suggest "light".

Could someone check it?

Thanks!

Kind regards,

Re: [PB5.43LTS] Maths operators and structures

Posted: Wed Aug 24, 2016 7:25 am
by skywalk
*test is considered a pointer.
Add a space between the operator and test. 1 * test\...