· 1 MIN READ
Hello World
Welcome to my blog.
This is where I’ll share thoughts, ideas, and whatever else comes to mind.
What to expect
Not sure yet. We’ll see where this goes.
A taste of code
Here’s a simple function I like:
const greet = (name: string): string => {
return `Hello, ${name}!`;
};
// Usage
const message = greet('world');
console.log(message); // "Hello, world!"
And some Go for good measure:
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
“The journey of a thousand miles begins with a single step.”
Stay tuned.