Hello World!

The first mark of an era!!

Back

Hello World! 👋

So I found this really cool portfolio website template. ✨ I won't gate keep, have a look at my portfolio project if you want to get access to the repo. But this is so cool! 🔥 What I like most is the fact that it comes with a preconfigured blog! I can write my blogs right in my favourite code editor! 💻

Anyways... Let's write Hello world programs in my used programming languages. 👇

Python

print("Hello World!")

Go

import 'fmt'
 
func main() {
    fmt.println("Hello World!")
}

TypeScript

// Just to diffentiate from javascript
const msg: string = "Hello World";
 
console.log(msg);

C++

#include <iostream>
#include <vector>
#include <string>
 
int main()
{
    std::vector<std::string> msg = {"Hello", "World!"};
 
    for (const auto &word : msg)
    {
        std::cout << word << " ";
    }
    std::cout << std::endl;
 
    return 0;
}

‼️ I Love Semi-Colons 😭🔥

Soon enough, I'll start talking about my favourite technologies, frameworks and everything I use. For now, have a look at my projects page to see what I've built!

Written by

Lebogang Phoshoko

On

Sat May 24 2025