I found a few bugs related to comment parsing in E2.
@name test 1
@inputs Wirelink:wirelink
@trigger none
@strict
_=Wirelink[1]#=69
_=Wirelink[1]# =69
The first line doesn't read, it instead writes the commented value 69 to address 1. Using a variable other than discard doesn't change the result. Once a space is added between ] and # it works as expected.
The second line won't compile at all and says " Unexpected symbol '' ". The fix is the same as before.
These seem to be related, but I'm not sure.
I found a few bugs related to comment parsing in E2.
The first line doesn't read, it instead writes the commented value 69 to address 1. Using a variable other than discard doesn't change the result. Once a space is added between ] and # it works as expected.
The second line won't compile at all and says " Unexpected symbol '' ". The fix is the same as before.
These seem to be related, but I'm not sure.