Symbols - kurthd/compiler-project GitHub Wiki
A working list of valid symbols that comprise my language:
- identifier - a sequence of alphanumeric characters starting with a letter
- (
- )
- {
- }
- if
- else
- while
- =
- number - a sequence of digits with zero or one '.'
- ;
- EOF
- return
Questions: Are built-in primitives their own keywords? Built-in arithmetic operators?