Getting Started

This first guide will walk through installing Donna, creating a project, and running the generated test suite.

code
donna new hello
cd hello
donna test
code
import donna/string

fn route(title: String) -> String:
  "/docs/" <> string.to_slug(title)

pub fn main() -> Nil:
  let path = route("Language Tour")
  echo path

More detail is coming soon.