Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

The Data Model

Two type declarations define all the data flowing through the server:

(type ShortUrl
  (Entry
    :string code
    :string url
    :number created-at
    :number clicks))

Every short URL entry has a code, the original URL, a creation timestamp, and a click counter. The compiler tracks this shape throughout the codebase.