]> git.jsancho.org Git - tinymsg.git/commitdiff
Adding README file master
authorJavier Sancho <jsf@jsancho.org>
Thu, 25 Jun 2015 07:07:45 +0000 (09:07 +0200)
committerJavier Sancho <jsf@jsancho.org>
Thu, 25 Jun 2015 07:07:45 +0000 (09:07 +0200)
README.md [new file with mode: 0644]

diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..8846f8c
--- /dev/null
+++ b/README.md
@@ -0,0 +1,36 @@
+tinymsg
+=======
+
+Tiny messages system for communicating threads each other.
+
+Usage
+-----
+
+```
+scheme@(guile-user)> (use-modules (tinymsg))
+scheme@(guile-user)> (send-message 'msgbox "Hello World!!")
+$1 = "Hello World!!"
+scheme@(guile-user)> (receive-message 'msgbox)
+$2 = "Hello World!!"
+scheme@(guile-user)> (map
+                       (lambda (n)
+                         (send-message 'msgbox n))
+                       '(1 2 3 4 5))
+$3 = (1 2 3 4 5)
+scheme@(guile-user)> (flush-messages 'msgbox)
+msgbox got 1
+msgbox got 2
+msgbox got 3
+msgbox got 4
+msgbox got 5
+```
+
+Requirements
+------------
+
+* GNU Guile >= 2.0.11
+
+License
+-------
+
+GNU GPLv3+