dowel

hello — the minimal working example

Two packages: a static library (libgreet) and an executable that uses it (app). Demonstrates that dowel really compiles C.

cd app
dowel check
dowel build
./.dowel/build/*/bin/app

cd ../libgreet
dowel test        # build and run test.greet_test

What to look at:

Propagation paths can be traced with dowel why:

dowel why app:app includes
dowel graph --kind=action

This example is built and checked by crates/dowel-cli/tests/example.rs.