diff options
author | Ian Price <ianprice90@googlemail.com> | 2017-08-28 14:08:31 +0100 |
---|---|---|
committer | Ian Price <ianprice90@googlemail.com> | 2017-08-28 14:08:31 +0100 |
commit | 05c57a6a66904861bb760aea13dd3ad3117c5966 (patch) | |
tree | 76159120b78294d6cad91e191a5af2e23e0f87d2 /module/scripts | |
parent | 6c5c5d068d986fe1458a49839945bfb3467c1593 (diff) | |
download | guile-05c57a6a66904861bb760aea13dd3ad3117c5966.tar.gz |
Update Copyright Headers
* module/Makefile.am:
* module/language/cps/compile-js.scm:
* module/language/cps/spec.scm:
* module/language/javascript.scm:
* module/language/javascript/spec.scm:
* module/language/js-il.scm:
* module/language/js-il/compile-javascript.scm:
* module/language/js-il/inlining.scm:
* module/language/js-il/runtime.js: Update copyright headers
Diffstat (limited to 'module/scripts')
-rw-r--r-- | module/scripts/jslink.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/module/scripts/jslink.scm b/module/scripts/jslink.scm index f03c6e953..06d4dec17 100644 --- a/module/scripts/jslink.scm +++ b/module/scripts/jslink.scm @@ -1,3 +1,32 @@ +;;; jslink --- Link Together JS Modules + +;; Copyright 2017 Free Software Foundation, Inc. +;; +;; This program 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, or +;; (at your option) any later version. +;; +;; This program 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 software; see the file COPYING.LESSER. If +;; not, write to the Free Software Foundation, Inc., 51 Franklin +;; Street, Fifth Floor, Boston, MA 02110-1301 USA + +;;; Author: Ian Price <ianprice90@gmail.com> + +;;; Commentary: + +;; Usage: jslink [ARGS] +;; +;; A command-line tool for linking together compiled JS modules. + +;;; Code: + (define-module (scripts jslink) #:use-module (system base compile) #:use-module (system base language) |