We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that TT requires spaces around math operators sometimes. For example this runs just fine:
x = 5; y = x + 2; ' y='; y; y = x - 2; ' y='; y; y = x * 2; ' y='; y; y = x / 2; ' y='; y;
and gives
y=7 y=3 y=10 y=2.5
However, this fails parsing:
x = 5; y = x+2; ' y='; y; y = x-2; ' y='; y; y = x*2; ' y='; y; y = x/2; ' y='; y;
on the x-2. Comment that line out, and it also fails on the x/2.
x-2
x/2
If it's documented somewhere that x-2 is not valid but x - 2 is, I can't find it.
x - 2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems that TT requires spaces around math operators sometimes. For example this runs just fine:
and gives
However, this fails parsing:
on the
x-2
. Comment that line out, and it also fails on thex/2
.If it's documented somewhere that
x-2
is not valid butx - 2
is, I can't find it.The text was updated successfully, but these errors were encountered: