This track takes you from a fresh checkout to a small multi-threaded
program. Every chapter ends with something you can run.
What you need
A C toolchain and a POSIX system (Linux, macOS, BSD).
A text editor. There is no IDE, no build file format, no package manager.
$ make # builds ./loth
$ make libs # builds lib/Std.so and lib/Thread.so
$ ./loth run hello.loth
The running example
Chapters 5–10 build one small program: a task list with a worker thread
that marks everything done. Each chapter explains the pieces it uses; the
complete program is shown across the chapters.