My First Tech Post
This is an example tech blog post with some code examples.
Getting Started
Here's a simple Python function:
def greet(name):
"""A simple greeting function."""
return f"Hello, {name}!"
print(greet("World"))
More Code
You can also show inline code like print("Hello") in your sentences.
JavaScript Example
function fibonacci(n) {
if (n <= 1) return n;
return fibonacci(n - 1) + fibonacci(n - 2);
}
console.log(fibonacci(10));
This is a simple example of how you can write tech blog posts with code snippets!