From b786aa21a300f764663b8d146f69432bbac6d005 Mon Sep 17 00:00:00 2001 From: froge Date: Thu, 31 Jul 2025 17:29:09 +1000 Subject: [PATCH] Update readme, create factorial_examples folder and move existing code into it --- README.md | 2 +- factorial_examples/README.md | 1 + factorial.c => factorial_examples/factorial.c | 0 factorial.py => factorial_examples/factorial.py | 0 4 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 factorial_examples/README.md rename factorial.c => factorial_examples/factorial.c (100%) rename factorial.py => factorial_examples/factorial.py (100%) diff --git a/README.md b/README.md index 80a3b3c..0b0c1ae 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -Some example factorial functions in various programming languages +Some toy example problems in various programming languages diff --git a/factorial_examples/README.md b/factorial_examples/README.md new file mode 100644 index 0000000..80a3b3c --- /dev/null +++ b/factorial_examples/README.md @@ -0,0 +1 @@ +Some example factorial functions in various programming languages diff --git a/factorial.c b/factorial_examples/factorial.c similarity index 100% rename from factorial.c rename to factorial_examples/factorial.c diff --git a/factorial.py b/factorial_examples/factorial.py similarity index 100% rename from factorial.py rename to factorial_examples/factorial.py