summaryrefslogtreecommitdiff
path: root/tangle.lp
diff options
context:
space:
mode:
authoreudoxia <uplink@distress.network>2022-04-25 02:26:06 -0400
committereudoxia <uplink@distress.network>2022-04-25 02:26:06 -0400
commit04518819d5916cd4d024b4c6c777d23c75407e60 (patch)
tree5e65492c73bfb06e2d12c166c0faa4d85ebe8828 /tangle.lp
parentaa372c0ed6ca775f603a535d8bad70f172751a29 (diff)
added license headers
Diffstat (limited to 'tangle.lp')
-rw-r--r--tangle.lp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tangle.lp b/tangle.lp
index c858f14..95d7e63 100644
--- a/tangle.lp
+++ b/tangle.lp
@@ -1,6 +1,8 @@
The structure of this file is quite similar to that of `weave.zig`, only differing in terms of which functions are used to transform the input data.
@: *
+@= License
+
@= Imports
pub fn main() !u8 {
@@ -22,6 +24,13 @@ pub fn main() !u8 {
}
@.
+@: License
+// Copyright 2022 DistressNetwork° <uplink@distress.network>
+// 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 https://mozilla.org/MPL/2.0/.
+@.
+
First we import the other files containing the core functions.
@: Imports