diff --git a/examples/README.md b/examples/README.md index df5af83..330b0e1 100644 --- a/examples/README.md +++ b/examples/README.md @@ -1,12 +1,12 @@ # Example Programs -- [coroutine.tm](coroutine.tm): A library for coroutines similar to Lua's +- [coroutine](coroutine/coroutine.tm): A library for coroutines similar to Lua's (using [libaco](https://libaco.org)). -- [game/](game/): An example game using raylib. -- [http.tm](http.tm): An HTTP library to make basic synchronous HTTP requests. -- [ini.tm](ini.tm): An INI configuration file reader tool. +- [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 style of [learnxinyminutes.com](https://learnxinyminutes.com/). -- [log.tm](log.tm): A logging utility. -- [vectors.tm](vectors.tm): A math vector library. -- [wrap.tm](wrap.tm): A command-line program to wrap text. +- [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. diff --git a/examples/coroutine.tm b/examples/coroutine/coroutine.tm similarity index 100% rename from examples/coroutine.tm rename to examples/coroutine/coroutine.tm diff --git a/examples/http.tm b/examples/http/http.tm similarity index 100% rename from examples/http.tm rename to examples/http/http.tm diff --git a/examples/example.ini b/examples/ini/example.ini similarity index 100% rename from examples/example.ini rename to examples/ini/example.ini diff --git a/examples/ini.tm b/examples/ini/ini.tm similarity index 100% rename from examples/ini.tm rename to examples/ini/ini.tm diff --git a/examples/log.tm b/examples/log/log.tm similarity index 100% rename from examples/log.tm rename to examples/log/log.tm diff --git a/examples/tomodeps.tm b/examples/tomodeps/tomodeps.tm similarity index 100% rename from examples/tomodeps.tm rename to examples/tomodeps/tomodeps.tm diff --git a/examples/vectors.tm b/examples/vectors/vectors.tm similarity index 100% rename from examples/vectors.tm rename to examples/vectors/vectors.tm diff --git a/examples/wrap.tm b/examples/wrap/wrap.tm similarity index 100% rename from examples/wrap.tm rename to examples/wrap/wrap.tm