You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
integer-less decimals (ex: .5) and sqrt negation assignement (a=-sqrt) are highlighted by vscode-yolol but work in-game
Example code
d=(dx*dx+dy*dy+dz*dz)^.5
// ~
// [Expected expression on right side of ^. Found Token: '.'(Unknown) [parser]]
l=-sqrt(rx^2+ry^2+rz^2)
// ~~~~
// [Expected expression on right side of -. Found Token: 'sqrt'(Keyword) [parser]]
The text was updated successfully, but these errors were encountered:
Interesting find.
The -sqrt is a simple bug in the yodk-parser.
The thing with .5 is really new to me. Never seen that anywhere before, but you are right, the game just accepts it...
Describe the bug
integer-less decimals (ex:
.5
) and sqrt negation assignement (a=-sqrt
) are highlighted by vscode-yolol but work in-gameExample code
The text was updated successfully, but these errors were encountered: