← Back to blog

Hello World

By Joonho Lim

April 7, 2026

Physician
1
Engineer
3
Life
6
metaintroduction

This is the first post on slowdoctor.dev. More to come.

type Direction = "slow" | "fast";

function chooseWay(direction: Direction) {
  return direction === "slow" ? "the right way" : "the easy way";
}