Hello, World はじめての投稿
## はじめに
このサイトは素の HTML と CSS で作っています。フレームワークなし、ビルドツールは Bun のみ。シンプルに保つことが目標です。
## 構成
output/
├── index.html
├── style.css
├── copy-code.js
└── blog/
├── index.html
└── hello-world.html
## コードサンプル
fn main() {
println!("Hello, bido.dev!");
}
const greet = (name: string): string => `Hello, ${name}!`
console.log(greet("world"))
# ビルドして確認
bun run build:blog
open output/blog/hello-world.html