Happy New Year 2026

Thursday, 01 January 2026
Misc

2026 begins.

Grateful for the lessons of the past year and excited about what’s ahead—new projects, deeper learning, and better solutions.

// 2026.go
// go build 2026.go

package main

import (
    "fmt"
    "time"
)

func main() {
    greetings := `Happy New Year 2026!
Wishing you a fantastic year ahead!`

    for _, ch := range greetings {
        fmt.Print(string(ch))
        time.Sleep(100 * time.Millisecond)
    }
}
Top