Blog Post sample
js
java
go
We paired with a cutting-edge music API and a team of horticulturalists to build AI-generated playlists that maximize houseplant health.
Exploring Code with MDX
Hello, world! This is a blog post written in MDX. It includes snippets of code in various languages. Let’s dive right into it!
TypeScript Snippet
Let’s start with TypeScript. Here’s a simple function that adds two numbers:
function add(a: number, b: number): number {
return a + b;
}