aboutsummaryrefslogtreecommitdiff
path: root/examples/README.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-01 16:44:58 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-01 16:44:58 -0400
commited50c5fefb8892ad2ba5262491669f268ddbd436 (patch)
treee93a6a8b7e963c37a001691751d6845d10e0cbf8 /examples/README.md
parent02a99d24a310c04622a875dcf4b0c6fd2de71332 (diff)
Overhaul code to stop keeping examples and libraries in the same repo,
but instead spin each out into its own repo.
Diffstat (limited to 'examples/README.md')
-rw-r--r--examples/README.md19
1 files changed, 10 insertions, 9 deletions
diff --git a/examples/README.md b/examples/README.md
index 9e9291e5..d527d692 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -4,19 +4,20 @@ This folder contains some example programs and libraries.
## Example Programs
+- [hello.tm](hello.tm): A Hello World program.
- [learnxiny.tm](learnxiny.tm): A quick overview of language features in the
style of [learnxinyminutes.com](https://learnxinyminutes.com/).
-- [game](game/): An example game using raylib.
-- [http-server](http-server/): A multithreaded HTTP server.
-- [wrap](wrap/): A command-line program to wrap text.
+- [game](https://github.com/bruce-hill/tomo-game): An example game using raylib.
+- [http-server](https://github.com/bruce-hill/http-server): A multithreaded HTTP server.
+- [wrap](https://github.com/bruce-hill/wrap): A command-line program to wrap text.
## Example Libraries
Libraries can be installed with `tomo -IL ./library-folder`
-- [colorful](colorful/): A DSL useful for rendering terminal colors.
-- [coroutines](coroutines/): A library for stackful coroutines similar to Lua's. (Note: only works on x86_64)
-- [http](http/): An HTTP library to make basic synchronous HTTP requests.
-- [ini](ini/): An INI configuration file reader tool.
-- [log](log/): A logging utility.
-- [vectors](vectors/): A math vector library.
+- [colorful](https://github.com/bruce-hill/tomo-colorful): A DSL useful for rendering terminal colors.
+- [coroutines](https://github.com/bruce-hill/tomo-coroutines): A library for stackful coroutines similar to Lua's. (Note: only works on x86_64)
+- [http](https://github.com/bruce-hill/tomo-http): An HTTP library to make basic synchronous HTTP requests.
+- [ini](https://github.com/bruce-hill/tomo-ini): An INI configuration file reader tool.
+- [log](https://github.com/bruce-hill/tomo-log): A logging utility.
+- [vectors](https://github.com/bruce-hill/tomo-vectors): A math vector library.