rintolang / rinto

In-development open source programming language based on C/C++
https://rintolang.github.io
GNU General Public License v3.0
3 stars 2 forks source link

feat: token.h #1

Closed zeim839 closed 2 years ago

zeim839 commented 2 years ago

Created tokens.h and tokens.cpp to formalize implementation of language tokens. Scanners can now trace strings to reserved identifiers by calling lookup() and passing the string.

Removed hidden MacOS .DS_Store file and added a .gitignore file to prevent accidentally committing build files.

Also, I think its best if we use C++ instead of C.