Hello, World
Sep 18, 2026
Im starting this blog to write about what I learn as I dig deeper into programming and CS.
Its currently Rust, but I think the languages that shaped how I think deserve a Hello too!
#lang racket
(displayln "Hello, World!")fn main() {
println!("Hello, World!");
}package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}