From e717f9f6aaaedf2fa0b8c6dac2aaae5bc5ad8c30 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 21 Mar 2025 22:15:59 -0400 Subject: [PATCH] Update readme --- examples/README.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/examples/README.md b/examples/README.md index f623a42..daea049 100644 --- a/examples/README.md +++ b/examples/README.md @@ -1,12 +1,18 @@ # Example Programs +- [learnxiny.tm](learnxiny.tm): A quick overview of language features in the - [base64](base64/): A base64 encoding/decoding library. - [colorful](colorful/): A DSL useful for rendering terminal colors. +- [commands](commands/): A library for running commands. - [game](game/): An example game using raylib. -- [http](http/http.tm): An HTTP library to make basic synchronous HTTP requests. -- [ini](ini/ini.tm): An INI configuration file reader tool. -- [learnxiny.tm](learnxiny.tm): A quick overview of language features in the +- [http](http/): An HTTP library to make basic synchronous HTTP requests. +- [ini](ini/): An INI configuration file reader tool. style of [learnxinyminutes.com](https://learnxinyminutes.com/). -- [log](log/log.tm): A logging utility. -- [vectors](vectors/vectors.tm): A math vector library. -- [wrap](wrap/wrap.tm): A command-line program to wrap text. +- [log](log/): A logging utility. +- [pthreads](pthreads/): A POSIX threads library. +- [threads](threads/): A POSIX threads library, but with a higher level abstraction. +- [shell](shell/): A DSL for running shell commands. +- [tomodeps](tomodeps/): A library for finding Tomo dependencies. +- [tomo-install](tomo-install/): A library for installing Tomo dependencies. +- [vectors](vectors/): A math vector library. +- [wrap](wrap/): A command-line program to wrap text.