tomo/examples/README.md

33 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2025-04-01 17:48:14 -07:00
# Examples
This folder contains some example programs and libraries.
## Example Programs
2024-09-05 12:38:58 -07:00
2025-03-21 19:15:59 -07:00
- [learnxiny.tm](learnxiny.tm): A quick overview of language features in the
2025-04-01 17:48:14 -07:00
- [game](game/): An example game using raylib.
2025-04-01 18:15:17 -07:00
- [http-server](http-server/): A multithreaded HTTP server.
2025-04-01 17:48:14 -07:00
- [tomodeps](tomodeps/): A library for finding Tomo dependencies.
- [tomo-install](tomo-install/): A library for installing Tomo dependencies.
## Example Libraries
Libraries can be installed with `tomo -IL ./library-folder`
2024-11-03 22:33:54 -08:00
- [base64](base64/): A base64 encoding/decoding library.
2025-03-01 21:07:54 -08:00
- [colorful](colorful/): A DSL useful for rendering terminal colors.
2025-03-21 19:15:59 -07:00
- [commands](commands/): A library for running commands.
2025-04-01 17:48:14 -07:00
- [core](core/): Bundling up commonly used libraries into a single library.
2025-03-21 19:15:59 -07:00
- [http](http/): An HTTP library to make basic synchronous HTTP requests.
- [ini](ini/): An INI configuration file reader tool.
2024-09-12 21:27:46 -07:00
style of [learnxinyminutes.com](https://learnxinyminutes.com/).
2025-03-21 19:15:59 -07:00
- [log](log/): A logging utility.
2025-04-01 17:48:14 -07:00
- [patterns](patterns/): Pattern matching for text.
2025-03-21 19:15:59 -07:00
- [pthreads](pthreads/): A POSIX threads library.
2025-04-01 17:48:14 -07:00
- [random](random/): Pseudorandom number generators.
2025-03-21 19:15:59 -07:00
- [shell](shell/): A DSL for running shell commands.
2025-04-01 17:48:14 -07:00
- [time](time/): A module for working with dates and times.
2025-03-21 19:15:59 -07:00
- [vectors](vectors/): A math vector library.
2025-04-01 17:48:14 -07:00
- [uuid](uuid/): A universally unique identifier library.
2025-03-21 19:15:59 -07:00
- [wrap](wrap/): A command-line program to wrap text.