Open Champii opened 2 years ago
The parser has trouble using literals with the dot notation
The following
main: -> 1.print()
Is parsed as
main: -> 1.0(print())
There is trouble with Float64 particularly as it produce a hard parse error:
main: -> 2.2.print()
The Bool and String work well. The problem is obviously when parsing the dot .
Bool
String
.
The current workaround is to put the incriminated literals between parenthesis
main: -> (1).print() (2.2).print()
The parser has trouble using literals with the dot notation
The following
Is parsed as
There is trouble with Float64 particularly as it produce a hard parse error:
The
Bool
andString
work well. The problem is obviously when parsing the dot.