From 7c8cc2d0ffd5a3003248a807971014c1703a3f60 Mon Sep 17 00:00:00 2001 From: jgarcias Date: Sat, 4 Oct 2025 23:47:39 +0200 Subject: [PATCH] Add a simple README.md file including an example use case --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..761883fc --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +Rearrange +========= + +This module is used for rearranging names. +Turns "LastName,FirstName" into "Firstname LastName". + +## Examples + +* Calling `rearrange_name("Turing, Alan")` will return `"Alan Turing"` +* Calling `rearrange_name("Hopper, Grace M.")` will return `"Grace M. Hopper"` +* Calling `rearrange_name("Voltaire")` will return `"Voltaire"`