I was trying the multiplication that is normally used << but it doesn't work.
In the documentation it says:
MyVar = FnLSL( 1, BitNum)is Equivalent toMyVar = 1<<BitNum`
Test = FnLSL( 1, test) ' work
Test = 1<<test ' it does not work
Am I doing something wrong?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
OK, I understand my English is not good, it is equivalent not equal.
Sorry for the inconvenience, congratulations for the great effort to implement the FLOAT
Greetings and good work
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I was trying the multiplication that is normally used << but it doesn't work.
In the documentation it says:
MyVar = FnLSL( 1, BitNum)
is Equivalent to
MyVar = 1<<BitNum`Test = FnLSL( 1, test) ' work
Test = 1<<test ' it does not work
Am I doing something wrong?
Please read as
MyVar = FnLSL( 1, BitNum)is the GCBASIC operation for MyVar = 1<<BitNum`
OK, I understand my English is not good, it is equivalent not equal.
Sorry for the inconvenience, congratulations for the great effort to implement the FLOAT
Greetings and good work
Thank you, and, not a problem to clarify things.