aboutsummaryrefslogtreecommitdiff
path: root/luxc/src
diff options
context:
space:
mode:
Diffstat (limited to 'luxc/src')
-rw-r--r--luxc/src/lux.clj5
-rw-r--r--luxc/src/lux/analyser.clj5
-rw-r--r--luxc/src/lux/analyser/base.clj5
-rw-r--r--luxc/src/lux/analyser/case.clj5
-rw-r--r--luxc/src/lux/analyser/env.clj5
-rw-r--r--luxc/src/lux/analyser/host.clj5
-rw-r--r--luxc/src/lux/analyser/lambda.clj5
-rw-r--r--luxc/src/lux/analyser/lux.clj5
-rw-r--r--luxc/src/lux/analyser/meta.clj5
-rw-r--r--luxc/src/lux/analyser/module.clj5
-rw-r--r--luxc/src/lux/analyser/parser.clj5
-rw-r--r--luxc/src/lux/analyser/record.clj5
-rw-r--r--luxc/src/lux/base.clj5
-rw-r--r--luxc/src/lux/compiler.clj5
-rw-r--r--luxc/src/lux/compiler/base.clj5
-rw-r--r--luxc/src/lux/compiler/cache.clj5
-rw-r--r--luxc/src/lux/compiler/cache/ann.clj5
-rw-r--r--luxc/src/lux/compiler/cache/type.clj5
-rw-r--r--luxc/src/lux/compiler/case.clj5
-rw-r--r--luxc/src/lux/compiler/host.clj5
-rw-r--r--luxc/src/lux/compiler/io.clj5
-rw-r--r--luxc/src/lux/compiler/lambda.clj5
-rw-r--r--luxc/src/lux/compiler/lux.clj5
-rw-r--r--luxc/src/lux/compiler/module.clj5
-rw-r--r--luxc/src/lux/compiler/parallel.clj5
-rw-r--r--luxc/src/lux/host.clj5
-rw-r--r--luxc/src/lux/host/generics.clj5
-rw-r--r--luxc/src/lux/lexer.clj5
-rw-r--r--luxc/src/lux/lib/loader.clj5
-rw-r--r--luxc/src/lux/optimizer.clj4
-rw-r--r--luxc/src/lux/parser.clj5
-rw-r--r--luxc/src/lux/reader.clj5
-rw-r--r--luxc/src/lux/repl.clj5
-rw-r--r--luxc/src/lux/type.clj5
-rw-r--r--luxc/src/lux/type/host.clj5
35 files changed, 0 insertions, 174 deletions
diff --git a/luxc/src/lux.clj b/luxc/src/lux.clj
index a013d2421..76778346d 100644
--- a/luxc/src/lux.clj
+++ b/luxc/src/lux.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux
(:gen-class)
(:require [lux.base :as & :refer [|let |do return return* |case]]
diff --git a/luxc/src/lux/analyser.clj b/luxc/src/lux/analyser.clj
index f28d55e23..51b5b4028 100644
--- a/luxc/src/lux/analyser.clj
+++ b/luxc/src/lux/analyser.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.analyser
(:require (clojure [template :refer [do-template]])
clojure.core.match
diff --git a/luxc/src/lux/analyser/base.clj b/luxc/src/lux/analyser/base.clj
index e5e793c34..3f95e072a 100644
--- a/luxc/src/lux/analyser/base.clj
+++ b/luxc/src/lux/analyser/base.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.analyser.base
(:require clojure.core.match
clojure.core.match.array
diff --git a/luxc/src/lux/analyser/case.clj b/luxc/src/lux/analyser/case.clj
index 8bb5cca35..a37b6ebf3 100644
--- a/luxc/src/lux/analyser/case.clj
+++ b/luxc/src/lux/analyser/case.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.analyser.case
(:require clojure.core.match
clojure.core.match.array
diff --git a/luxc/src/lux/analyser/env.clj b/luxc/src/lux/analyser/env.clj
index 5c0133821..90fa39dfb 100644
--- a/luxc/src/lux/analyser/env.clj
+++ b/luxc/src/lux/analyser/env.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.analyser.env
(:require clojure.core.match
clojure.core.match.array
diff --git a/luxc/src/lux/analyser/host.clj b/luxc/src/lux/analyser/host.clj
index 8c6b1ac80..d89de457b 100644
--- a/luxc/src/lux/analyser/host.clj
+++ b/luxc/src/lux/analyser/host.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.analyser.host
(:require (clojure [template :refer [do-template]]
[string :as string])
diff --git a/luxc/src/lux/analyser/lambda.clj b/luxc/src/lux/analyser/lambda.clj
index b460a2e18..fdea7521a 100644
--- a/luxc/src/lux/analyser/lambda.clj
+++ b/luxc/src/lux/analyser/lambda.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.analyser.lambda
(:require clojure.core.match
clojure.core.match.array
diff --git a/luxc/src/lux/analyser/lux.clj b/luxc/src/lux/analyser/lux.clj
index 2d439dd03..5f3626900 100644
--- a/luxc/src/lux/analyser/lux.clj
+++ b/luxc/src/lux/analyser/lux.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.analyser.lux
(:require (clojure [template :refer [do-template]]
[set :as set])
diff --git a/luxc/src/lux/analyser/meta.clj b/luxc/src/lux/analyser/meta.clj
index 931558374..120bab1b0 100644
--- a/luxc/src/lux/analyser/meta.clj
+++ b/luxc/src/lux/analyser/meta.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.analyser.meta
(:require (clojure [template :refer [do-template]])
clojure.core.match
diff --git a/luxc/src/lux/analyser/module.clj b/luxc/src/lux/analyser/module.clj
index 272f37e64..c6a079cab 100644
--- a/luxc/src/lux/analyser/module.clj
+++ b/luxc/src/lux/analyser/module.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.analyser.module
(:refer-clojure :exclude [alias])
(:require (clojure [string :as string]
diff --git a/luxc/src/lux/analyser/parser.clj b/luxc/src/lux/analyser/parser.clj
index b52abacee..976940701 100644
--- a/luxc/src/lux/analyser/parser.clj
+++ b/luxc/src/lux/analyser/parser.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.analyser.parser
(:require (clojure [template :refer [do-template]])
clojure.core.match
diff --git a/luxc/src/lux/analyser/record.clj b/luxc/src/lux/analyser/record.clj
index 4b3e9243d..9268f4c22 100644
--- a/luxc/src/lux/analyser/record.clj
+++ b/luxc/src/lux/analyser/record.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.analyser.record
(:require clojure.core.match
clojure.core.match.array
diff --git a/luxc/src/lux/base.clj b/luxc/src/lux/base.clj
index f47677852..bad60bb96 100644
--- a/luxc/src/lux/base.clj
+++ b/luxc/src/lux/base.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.base
(:require (clojure [template :refer [do-template]]
[string :as string])
diff --git a/luxc/src/lux/compiler.clj b/luxc/src/lux/compiler.clj
index 91dde8898..4792a1809 100644
--- a/luxc/src/lux/compiler.clj
+++ b/luxc/src/lux/compiler.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.compiler
(:refer-clojure :exclude [compile])
(:require (clojure [string :as string]
diff --git a/luxc/src/lux/compiler/base.clj b/luxc/src/lux/compiler/base.clj
index 9a990d9fc..e57fc1e2b 100644
--- a/luxc/src/lux/compiler/base.clj
+++ b/luxc/src/lux/compiler/base.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.compiler.base
(:require (clojure [template :refer [do-template]]
[string :as string])
diff --git a/luxc/src/lux/compiler/cache.clj b/luxc/src/lux/compiler/cache.clj
index 3d09a9c88..8ca319d66 100644
--- a/luxc/src/lux/compiler/cache.clj
+++ b/luxc/src/lux/compiler/cache.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.compiler.cache
(:refer-clojure :exclude [load])
(:require [clojure.string :as string]
diff --git a/luxc/src/lux/compiler/cache/ann.clj b/luxc/src/lux/compiler/cache/ann.clj
index a4dbb1605..5256fa0af 100644
--- a/luxc/src/lux/compiler/cache/ann.clj
+++ b/luxc/src/lux/compiler/cache/ann.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.compiler.cache.ann
(:require (clojure [template :refer [do-template]]
[string :as string])
diff --git a/luxc/src/lux/compiler/cache/type.clj b/luxc/src/lux/compiler/cache/type.clj
index 18440b6fc..6bddef9c1 100644
--- a/luxc/src/lux/compiler/cache/type.clj
+++ b/luxc/src/lux/compiler/cache/type.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.compiler.cache.type
(:require (clojure [template :refer [do-template]]
[string :as string])
diff --git a/luxc/src/lux/compiler/case.clj b/luxc/src/lux/compiler/case.clj
index 1bc87ff9b..aac3b6c98 100644
--- a/luxc/src/lux/compiler/case.clj
+++ b/luxc/src/lux/compiler/case.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.compiler.case
(:require (clojure [set :as set]
[template :refer [do-template]])
diff --git a/luxc/src/lux/compiler/host.clj b/luxc/src/lux/compiler/host.clj
index 5b8703a51..15413e637 100644
--- a/luxc/src/lux/compiler/host.clj
+++ b/luxc/src/lux/compiler/host.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.compiler.host
(:require (clojure [string :as string]
[set :as set]
diff --git a/luxc/src/lux/compiler/io.clj b/luxc/src/lux/compiler/io.clj
index 6e5aced34..3ee19988f 100644
--- a/luxc/src/lux/compiler/io.clj
+++ b/luxc/src/lux/compiler/io.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.compiler.io
(:require (lux [base :as & :refer [|case |let |do return* return fail*]])
(lux.compiler [base :as &&])
diff --git a/luxc/src/lux/compiler/lambda.clj b/luxc/src/lux/compiler/lambda.clj
index 82e4979bb..006476bef 100644
--- a/luxc/src/lux/compiler/lambda.clj
+++ b/luxc/src/lux/compiler/lambda.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.compiler.lambda
(:require (clojure [string :as string]
[set :as set]
diff --git a/luxc/src/lux/compiler/lux.clj b/luxc/src/lux/compiler/lux.clj
index 222c40a9d..e7e274519 100644
--- a/luxc/src/lux/compiler/lux.clj
+++ b/luxc/src/lux/compiler/lux.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.compiler.lux
(:require (clojure [string :as string]
[set :as set]
diff --git a/luxc/src/lux/compiler/module.clj b/luxc/src/lux/compiler/module.clj
index 445876e1f..9ca4e040b 100644
--- a/luxc/src/lux/compiler/module.clj
+++ b/luxc/src/lux/compiler/module.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.compiler.module
(:require (clojure [string :as string]
[set :as set]
diff --git a/luxc/src/lux/compiler/parallel.clj b/luxc/src/lux/compiler/parallel.clj
index 08f780a90..1c4da1a11 100644
--- a/luxc/src/lux/compiler/parallel.clj
+++ b/luxc/src/lux/compiler/parallel.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.compiler.parallel
(:require (clojure [string :as string]
[set :as set]
diff --git a/luxc/src/lux/host.clj b/luxc/src/lux/host.clj
index 5a9fade72..f0b45723d 100644
--- a/luxc/src/lux/host.clj
+++ b/luxc/src/lux/host.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.host
(:require (clojure [string :as string]
[template :refer [do-template]])
diff --git a/luxc/src/lux/host/generics.clj b/luxc/src/lux/host/generics.clj
index 70912f9d0..5dd95bb9b 100644
--- a/luxc/src/lux/host/generics.clj
+++ b/luxc/src/lux/host/generics.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.host.generics
(:require (clojure [string :as string]
[template :refer [do-template]])
diff --git a/luxc/src/lux/lexer.clj b/luxc/src/lux/lexer.clj
index 579fc3fad..38fa15cd0 100644
--- a/luxc/src/lux/lexer.clj
+++ b/luxc/src/lux/lexer.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.lexer
(:require (clojure [template :refer [do-template]]
[string :as string])
diff --git a/luxc/src/lux/lib/loader.clj b/luxc/src/lux/lib/loader.clj
index 1e160746d..19c5111ec 100644
--- a/luxc/src/lux/lib/loader.clj
+++ b/luxc/src/lux/lib/loader.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.lib.loader
(:refer-clojure :exclude [load])
(:require (lux [base :as & :refer [|let |do return return* |case]]))
diff --git a/luxc/src/lux/optimizer.clj b/luxc/src/lux/optimizer.clj
index 88d0a68b3..a3ce2c089 100644
--- a/luxc/src/lux/optimizer.clj
+++ b/luxc/src/lux/optimizer.clj
@@ -1,7 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
(ns lux.optimizer
(:require (lux [base :as & :refer [|let |do return return* |case defvariant]])
(lux.analyser [base :as &a]
diff --git a/luxc/src/lux/parser.clj b/luxc/src/lux/parser.clj
index 1b56cf213..3323dadfc 100644
--- a/luxc/src/lux/parser.clj
+++ b/luxc/src/lux/parser.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.parser
(:require [clojure.template :refer [do-template]]
clojure.core.match
diff --git a/luxc/src/lux/reader.clj b/luxc/src/lux/reader.clj
index 43875ed95..6fea32c16 100644
--- a/luxc/src/lux/reader.clj
+++ b/luxc/src/lux/reader.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.reader
(:require [clojure.string :as string]
clojure.core.match
diff --git a/luxc/src/lux/repl.clj b/luxc/src/lux/repl.clj
index 28f820693..22c2f47d2 100644
--- a/luxc/src/lux/repl.clj
+++ b/luxc/src/lux/repl.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.repl
(:require clojure.core.match
clojure.core.match.array
diff --git a/luxc/src/lux/type.clj b/luxc/src/lux/type.clj
index 6f91cfa01..cebe60d9c 100644
--- a/luxc/src/lux/type.clj
+++ b/luxc/src/lux/type.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.type
(:refer-clojure :exclude [deref apply merge bound?])
(:require [clojure.template :refer [do-template]]
diff --git a/luxc/src/lux/type/host.clj b/luxc/src/lux/type/host.clj
index 0f2ffde63..b255f97c5 100644
--- a/luxc/src/lux/type/host.clj
+++ b/luxc/src/lux/type/host.clj
@@ -1,8 +1,3 @@
-;; Copyright (c) Eduardo Julian. All rights reserved.
-;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-;; If a copy of the MPL was not distributed with this file,
-;; You can obtain one at http://mozilla.org/MPL/2.0/.
-
(ns lux.type.host
(:require clojure.core.match
clojure.core.match.array