Symbols - kurthd/compiler-project GitHub Wiki

A working list of valid symbols that comprise my language:

  1. identifier - a sequence of alphanumeric characters starting with a letter
  2. (
  3. )
  4. {
  5. }
  6. if
  7. else
  8. while
  9. =
  10. number - a sequence of digits with zero or one '.'
  11. ;
  12. EOF
  13. return

Questions: Are built-in primitives their own keywords? Built-in arithmetic operators?