From 714cc32cc8736578ca73ea51dd9420d67d68bf13 Mon Sep 17 00:00:00 2001 From: filipponvalasakis-maker Date: Sat, 20 Dec 2025 19:45:09 +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..ede12a4f --- /dev/null +++ b/README.MD @@ -0,0 +1,11 @@ +Rearrange +========= + +This module is used fpr rearranging names. +tURNS "LastName, FirstName" into "FirstName LastName". + +## Example + +* Calling `rearrange_name("Turing, Alan")` will return `"Allan Turing"` +* Calling `rearrange_name("Hopper M., Grace")` will return `"Grace M. Hopper"` +* Calling `rearrange_name("Voltaire")` will return `"Volataire"` \ No newline at end of file