Mentions légales du service

Skip to content

Fix #1: requires that rules end with semi-colon

Thierry Martinez requested to merge fix.1.semicolon into main

This fix proposes that all rules end with semi-colon, removing the ambiguity between bullets and arithmetic operators.

Now we can write:

- x = 1 + 2;

whereas, before this fix, we had to write

- x = (1 + 2)

because, without parentheses, the + was parsed as a bullet.

Merge request reports