Skip to content

Instantly share code, notes, and snippets.

@ENvironmentSet
Last active May 20, 2018 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ENvironmentSet/41dfeb26bd78491a3a3aee39a34f82cb to your computer and use it in GitHub Desktop.
Save ENvironmentSet/41dfeb26bd78491a3a3aee39a34f82cb to your computer and use it in GitHub Desktop.
EBNF of literals
numPrefix ::= 0x | 0b | 0o | nothing
floatNumber ::= numbers . numbers
fullNumber ::= numPrefix numbers | floatNumber
char ::= utf 8 char
chars ::= char chars | nothing
fullString ::= " chars "
@ENvironmentSet
Copy link
Author

실수 표기법이 누락된 거 같습니다..

@seeeturtle
Copy link

floatNumber ::= numers . numbers
fullNumber ::= numPrefix numbers | floatNumber

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment