From 86cc162923350599eb513aa0ae29d9e748b6ff78 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Fri, 13 Nov 2020 08:45:23 +0100 Subject: Rewrite README --- README.rakudoc | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 README.rakudoc (limited to 'README.rakudoc') diff --git a/README.rakudoc b/README.rakudoc new file mode 100644 index 0000000..9758b69 --- /dev/null +++ b/README.rakudoc @@ -0,0 +1,50 @@ +=begin pod + +=NAME Log +=VERSION 1.0.0 +=AUTHOR Patrick Spek + +=head1 Description + +A module for the Raku programming language to easily deep-merge two hashes. + +=head2 Usage + + my %alpha = + a => 'b', + c => { + d => 'e', + f => 'g', + }, + ; + + my %beta = + z => 'y', + c => { + x => 'w', + }, + ; + + my %merged = merge-hash(%alpha, %beta); + +=head2 Documentation + +There's currently no extensive documentation available. + +=head2 Contributing + +The module's source code is available at the following locations: + +=item L +=item L + +If you have a change you would like to include, please send a patch to +L. + +=head2 License + +This module is distributed under the terms of the Artistic License 2.0. For +more information, consult the LICENSE file in the module's source code +repository. + +=end pod -- cgit v1.1