https://github.com/barrettotte/simple-lang
[Unfinished] A stupidly basic programming language I started making to screw around with Yacc and Lex.
https://github.com/barrettotte/simple-lang
lex yacc
Last synced: 6 months ago
JSON representation
[Unfinished] A stupidly basic programming language I started making to screw around with Yacc and Lex.
- Host: GitHub
- URL: https://github.com/barrettotte/simple-lang
- Owner: barrettotte
- License: mit
- Created: 2020-02-16T18:51:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-22T19:06:52.000Z (over 5 years ago)
- Last Synced: 2025-02-03T13:13:15.973Z (8 months ago)
- Topics: lex, yacc
- Language: Yacc
- Homepage:
- Size: 8.79 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple-Lang
A stupidly basic programming language I started making to screw around with YACC and Lex.
While self studying compiler design, each book I referenced mentioned these two tools,
so I figured I should see what they were about.
They're cool and all, but I want to get into the guts of writing lexers and parsers by hand.## References
* Introduction to YACC and Lex - https://www.youtube.com/watch?v=54bo1qaHAfk
* http://dinosaur.compilertools.net/
* [Flex](http://dinosaur.compilertools.net/lex/index.html) - Fast lexical analyzer generator
* [YACC](http://dinosaur.compilertools.net/yacc/index.html) - Yet Another Compiler-Compiler