#compiler
Read more stories on Hashnode
Articles with this tag
My introduction to parsers So, when the Lexer of Sodum got completed i was able to generate a stream of tokens from the incoming raw source code . Now...
So, finally its time to do some coding . A lexer is nothing but a piece of software whose job is to take in an input ,in our case the source code of...
Understanding Grammars in Programming Languages What is a Grammar? In the world of programming languages, a grammar is a set of rules that defines the...
Tokens are the smallest meaningful part of the source code ( the high level language). So if your language contains if keyword it should have a token...
Introduction As we dive deeper into the Sodum project, it's crucial to set up a proper build system and code formatting tools. These might seem like...
Welcome to my blog series on developing Sodum, a simple programming language. This project aims to explore the inner workings of language...