Closed
Description
Describe the issue
As keywords and variables cannot start with a number in Python, the space between a number and a keyword can be skipped.
The highlighting should separate the number and the keyword part.
Which language seems to have the issue?
python
Are you using highlight
or highlightAuto
?
highlight
Sample Code to Reproduce
print(1if 0==0else"b")
(Also see GitHub's highlighting above)
(Also, also should print
be a built-in here?)
Additional context
Found on this StackExchange answer:
https://codegolf.stackexchange.com/a/218451/25026