Mokeke's Blog
返回文章列表

你好,世界!

欢迎

这是我的第一篇博客文章。我使用 Next.jsMDX 搭建了这个博客。

为什么写博客

写博客是一个很好的学习和总结方式:

  • 帮助自己梳理知识体系
  • 分享经验给其他开发者
  • 记录成长的过程

代码示例

这是一段 TypeScript 代码:

hello.ts
function greet(name: string): string {
  return `Hello, ${name}!`;
}
 
console.log(greet("World")); // Hello, World!

下一步

接下来我将在这里分享更多技术文章,敬请期待!

这个博客的源代码完全开源,欢迎参考和提出建议。