diff options
author | David Thompson <dthompson@member.fsf.org> | 2013-09-02 16:56:56 -0400 |
---|---|---|
committer | David Thompson <dthompson@member.fsf.org> | 2013-09-02 16:56:56 -0400 |
commit | 60486f7bc18ba59cde6c612640982a3a0c1ba8da (patch) | |
tree | a087175a9a42f0aa06b8c5a56db62ed1eb1c54d4 /2d | |
parent | 2d67cf8ec58c87609c242a7b93a2c1470c8d6180 (diff) |
Add license info mvars module to give Mark Weaver proper credit.
Diffstat (limited to '2d')
-rw-r--r-- | 2d/mvars.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2d/mvars.scm b/2d/mvars.scm index 2ba6ab5..70674a4 100644 --- a/2d/mvars.scm +++ b/2d/mvars.scm @@ -1,3 +1,24 @@ +;;; Synchronized Mutable Variables + +;; Copyright (C) 2013 Mark Weaver + +;; This library is free software; you can redistribute it and/or +;; modify it under the terms of the GNU Lesser General Public +;; License as published by the Free Software Foundation; either +;; version 3 of the License, or (at your option) any later version. +;; +;; This library is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;; Lesser General Public License for more details. +;; +;; You should have received a copy of the GNU Lesser General Public +;; License along with this library; if not, write to the Free Software +;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +;; 02110-1301 USA + +;;; Code: + (define-module (2d mvars) #:use-module (srfi srfi-8) ; receive #:use-module (srfi srfi-9) ; records |