RSSAmplifier

Blog

ebonnafoux

Personal Page and Article of Etienne Bonnafoux...

ebonnafoux.bearblog.devRSS feed ↗1 posts

Latest posts

What happend when you "Hello Word" in Python

For the first entry of this blog, following the tradition, we will discuss "Hello World". As my day-to-day programming language is Python, I want to analyze the toolchain behind printing "Hello World". 1. Setup So Assuming you are on a Unix terminal we start with > echo 'print("Hello World") > main.py' Then, assuming you have uv installed > uv run main.py Hello World So what happend ? 2.…