aboutsummaryrefslogtreecommitdiff
path: root/README.rakudoc
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-11-13 08:45:23 +0100
committerPatrick Spek <p.spek@tyil.nl>2020-11-13 08:45:23 +0100
commit86cc162923350599eb513aa0ae29d9e748b6ff78 (patch)
treef1e8416b4c42fee7ae6d2fdbbc8a199aaf8b7395 /README.rakudoc
parent5849c96fa6a058a8e3d79a17e0de845ab4d03fc8 (diff)
Rewrite README
Diffstat (limited to 'README.rakudoc')
-rw-r--r--README.rakudoc50
1 files changed, 50 insertions, 0 deletions
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 <p.spek+raku@tyil.nl>
+
+=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<https://gitlab.com/tyil/raku-hash-merge>
+=item L<https://github.com/scriptkitties/p6-Hash-Merge>
+
+If you have a change you would like to include, please send a patch to
+L<mailto:~tyil/raku-devel@lists.sr.ht>.
+
+=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