From d39a4cccd095e6a3156a570d3eefe09d7f67a456 Mon Sep 17 00:00:00 2001 From: hiroki Date: Wed, 18 Sep 2024 18:38:38 +0100 Subject: [PATCH] Add a simple README.md file inclduing some example use cases --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..8943aed0 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# Rearrange + +This module is used for rearranging names +Turns "lastname, first name" to first + last + +## Examples + +- Calling `("Turing, Alan")` returns `"Alan Turing"` +- Calling `("a, b")` return `"b a"`