From: David Vázquez Date: Thu, 25 Apr 2013 12:45:00 +0000 (+0100) Subject: File headers X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=c9f3fbb5cc76542cc902c1a67454e5eb09b65da3;p=jscl.git File headers --- diff --git a/print.lisp b/print.lisp index f406a97..f9e2630 100644 --- a/print.lisp +++ b/print.lisp @@ -1,3 +1,20 @@ +;;; print.lisp --- + +;; Copyright (C) 2012, 2013 David Vazquez +;; Copyright (C) 2012 Raimon Grau + +;; This program is free software: you can redistribute it and/or +;; modify it under the terms of the GNU General Public License as +;; published by the Free Software Foundation, either version 3 of the +;; License, 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 +;; General Public License for more details. +;; +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . ;;; Printer diff --git a/read.lisp b/read.lisp index e92be2f..bbd2586 100644 --- a/read.lisp +++ b/read.lisp @@ -1,3 +1,22 @@ +;;; read.lisp --- + +;; Copyright (C) 2012, 2013 David Vazquez +;; Copyright (C) 2012 Raimon Grau + +;; This program is free software: you can redistribute it and/or +;; modify it under the terms of the GNU General Public License as +;; published by the Free Software Foundation, either version 3 of the +;; License, 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 +;; General Public License for more details. +;; +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + + ;;;; Reader ;;; The Lisp reader, parse strings and return Lisp objects. The main diff --git a/toplevel.lisp b/toplevel.lisp index 6f1332e..d2cd2d4 100644 --- a/toplevel.lisp +++ b/toplevel.lisp @@ -1,3 +1,22 @@ +;;; toplevel.lisp --- + +;; Copyright (C) 2012, 2013 David Vazquez +;; Copyright (C) 2012 Raimon Grau + +;; This program is free software: you can redistribute it and/or +;; modify it under the terms of the GNU General Public License as +;; published by the Free Software Foundation, either version 3 of the +;; License, 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 +;; General Public License for more details. +;; +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + + (defun eval (x) (js-eval (ls-compile-toplevel x t)))