Subject: Let's make a programming language. Variables
Date: July 23, 2026, 01:00 PM UTC+1
Description:
We continue building our own programming language from scratch. In this session, we'll take the next step by adding variables to the language.
So far, our programs have consisted of a single expression built from smaller language constructs. Now it's time to evolve the language. Instead of parsing a single expression, we'll introduce a list of declarations, allowing our language to support variable declarations and laying the groundwork for more complex programs.
During the webinar, Yuri will walk through the implementation step by step, showing how variables are represented and processed in our language, and how to add this functionality to your language in C++.
This webinar is designed for developers who want to understand how programming languages work under the hood—not just how to use them.
Register to join the session. All registered participants will receive the recording of this webinar, along with recordings of all previous webinars in the series, after the webinar has concluded.
Don’t worry — there’s plenty more to come. Check out the schedule and register for upcoming webinars!
Subject: Go vet can't go: How to create your own Go analyzer?
Date: September 30, 2026, 01:00 PM UTC+1
Description:
A static analyzer is a powerful dev tool, and any Go developer who has worked with go vet knows it. But what if its capabilities aren't enough? Would you look for a new tool, or......
Subject: Go-Go-Gadg...Error? A closer look at the mistakes Go developers make!
Date: August 27, 2026
Description: Mistakes happen in Go code just like in any other language: typos, duplicates, broken condition checks, and so on. But why do they still slip through? After all, many teams use tools like go vet,...