Update readme

This commit is contained in:
Bruce Hill 2025-03-21 22:15:59 -04:00
parent 6412a721e6
commit e717f9f6aa

View File

@ -1,12 +1,18 @@
# Example Programs # Example Programs
- [learnxiny.tm](learnxiny.tm): A quick overview of language features in the
- [base64](base64/): A base64 encoding/decoding library. - [base64](base64/): A base64 encoding/decoding library.
- [colorful](colorful/): A DSL useful for rendering terminal colors. - [colorful](colorful/): A DSL useful for rendering terminal colors.
- [commands](commands/): A library for running commands.
- [game](game/): An example game using raylib. - [game](game/): An example game using raylib.
- [http](http/http.tm): An HTTP library to make basic synchronous HTTP requests. - [http](http/): An HTTP library to make basic synchronous HTTP requests.
- [ini](ini/ini.tm): An INI configuration file reader tool. - [ini](ini/): An INI configuration file reader tool.
- [learnxiny.tm](learnxiny.tm): A quick overview of language features in the
style of [learnxinyminutes.com](https://learnxinyminutes.com/). style of [learnxinyminutes.com](https://learnxinyminutes.com/).
- [log](log/log.tm): A logging utility. - [log](log/): A logging utility.
- [vectors](vectors/vectors.tm): A math vector library. - [pthreads](pthreads/): A POSIX threads library.
- [wrap](wrap/wrap.tm): A command-line program to wrap text. - [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.