aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-15 17:50:43 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-15 17:50:43 -0400
commit8b512adbbcf62f49b3e92410e643c86f2e70908a (patch)
treeb3f5e08c6589bc7c00e2a089fbe5304cb60d742a
parent3d1a102a8d8425b8f4a08b78c77ee4b38f6de55b (diff)
Move each example to its own folder
-rw-r--r--examples/README.md14
-rw-r--r--examples/coroutine/coroutine.tm (renamed from examples/coroutine.tm)0
-rw-r--r--examples/http/http.tm (renamed from examples/http.tm)0
-rw-r--r--examples/ini/example.ini (renamed from examples/example.ini)0
-rw-r--r--examples/ini/ini.tm (renamed from examples/ini.tm)0
-rw-r--r--examples/log/log.tm (renamed from examples/log.tm)0
-rw-r--r--examples/tomodeps/tomodeps.tm (renamed from examples/tomodeps.tm)0
-rw-r--r--examples/vectors/vectors.tm (renamed from examples/vectors.tm)0
-rw-r--r--examples/wrap/wrap.tm (renamed from examples/wrap.tm)0
9 files changed, 7 insertions, 7 deletions
diff --git a/examples/README.md b/examples/README.md
index df5af833..330b0e18 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
index 35eb5fda..35eb5fda 100644
--- a/examples/coroutine.tm
+++ b/examples/coroutine/coroutine.tm
diff --git a/examples/http.tm b/examples/http/http.tm
index bbec3308..bbec3308 100644
--- a/examples/http.tm
+++ b/examples/http/http.tm
diff --git a/examples/example.ini b/examples/ini/example.ini
index 782dc76f..782dc76f 100644
--- a/examples/example.ini
+++ b/examples/ini/example.ini
diff --git a/examples/ini.tm b/examples/ini/ini.tm
index c0d490cb..c0d490cb 100644
--- a/examples/ini.tm
+++ b/examples/ini/ini.tm
diff --git a/examples/log.tm b/examples/log/log.tm
index 42df072c..42df072c 100644
--- a/examples/log.tm
+++ b/examples/log/log.tm
diff --git a/examples/tomodeps.tm b/examples/tomodeps/tomodeps.tm
index e3354136..e3354136 100644
--- a/examples/tomodeps.tm
+++ b/examples/tomodeps/tomodeps.tm
diff --git a/examples/vectors.tm b/examples/vectors/vectors.tm
index 8560f9df..8560f9df 100644
--- a/examples/vectors.tm
+++ b/examples/vectors/vectors.tm
diff --git a/examples/wrap.tm b/examples/wrap/wrap.tm
index 54198193..54198193 100644
--- a/examples/wrap.tm
+++ b/examples/wrap/wrap.tm