Hello World - 我的第一篇博客

· 卡比 · 生活

欢迎来到我的博客!这是我的第一篇文章,介绍博客的创建过程和未来的计划。

Hello World

This is the first post of the blog. It is used to verify markdown rendering, syntax highlighting, and the content workflow.

About

The site is now powered by Astro and keeps a lightweight, content-first structure.

function fibonacci(n) {
  if (n <= 1) return n
  return fibonacci(n - 1) + fibonacci(n - 2)
}

console.log(fibonacci(10))