Compiler Man
@ELDER054
Compilers, and Language Design Enthusiast.
Repls
Community
2
Make a Full Lexer in Python! (Improved and Upgraded)
Read the comments inside the code to learn how to start your journey on creating programming languages.
The code will explain how to make a lexer, which is the first step in making a programming language.18
1
2
Gizmo
Gizmo is a fast and user friendly language for manipulating or parsing strings. It may not be much to look at yet, but the key word there is ye
3
CLIDE, Custom Language IDE, is a full syntax highlighting editor with auto-indentation, and a file system.
Report any bugs you find to me, and I will
HTML, CSS, JS
What is a Lexer?
A lexer is an analyzer that moves through your code looking at each character, and trying to create tokens out of them
This input
i
After finding someone’s project that used SLY (Sly Lex Yacc), I decided this would help me be able to create a programming language. So I picked my st