© 2023 Hashnode
#compiler
Ever wondered how your code comes to life? Meet the unsung heroes of programming: compilers and interpreters. Whether you're an experienced programmer, a tech enthusiast, or just starting in the tech…
Introduction This article will be a tutorial/guide for those who want to know how to compile your TypeScript file into a JavaScript file. Moreover, I will be introducing what is a compiler option, and…
Understanding the Differences If you've ever done programming in any language, you've likely heard the terms "compiler" and "interpreter" thrown around. But have you ever wondered what sets these two tools apart? In this article, we'll expl…
Typescript is a superset of Javascript, this means that it is built on Javascript and contains all the elements and functionality of Javascript. Also, it adds more features to Javascript. Why use Type…
Have you ever wondered what occurs behind the scenes when a C program is compiled? Everything begins with a single command: "gcc main.c". But what precisely happens when you press enter? In this post,…
Zig is a general-purpose programming language created by Andrew Kelley in 2015. It was designed to be a better alternative to C and aims to provide a safer and more modern programming environment, whi…
This is a very short article with a detailed explanation of interpreters and compilers What is a programming language? A programming language is a language that enables humans (developers) to communi…
In web development, there are many programming languages and frameworks based on languages to develop a website. These languages include HTML, CSS, ruby and many more. These languages are very powerfu…
Have you been wondering how files get executed in C and the files created in each stage until their actual execution? Here is its comprehensive breakdown. There are different stages involved in the ex…
That feeling of "I have no idea what this is" is exciting for me; It's what led me to pick up Crafting Interpreters by Robert Nystrom. I already have a decent understanding of what an interpreter is, …