Place the Mascarpone distribution in the public domain.
Chris Pressey
4 years ago
0 | Mascarpone is distributed under the following, BSD-compatible licenses. | |
1 | ||
2 | All documentation is covered by this license, modelled after the | |
3 | "Report on the Programming Language Haskell 98" license: | |
4 | ||
5 | ----------------------------------------------------------------------------- | |
6 | ||
7 | Copyright (c)2007-2014 Chris Pressey, Cat's Eye Technologies. | |
8 | All rights reserved. | |
9 | ||
10 | The authors intend this Report to belong to the entire Mascarpone | |
11 | community, and so we grant permission to copy and distribute it for | |
12 | any purpose, provided that it is reproduced in its entirety, | |
13 | including this Notice. Modified versions of this Report may also be | |
14 | copied and distributed for any purpose, provided that the modified | |
15 | version is clearly presented as such, and that it does not claim to | |
16 | be a definition of the Mascarpone Programming Language. | |
17 | ||
18 | ----------------------------------------------------------------------------- | |
19 | ||
20 | All source code for the reference implementation is covered by this license: | |
21 | ||
22 | ----------------------------------------------------------------------------- | |
23 | ||
24 | Copyright (c)2007-2014 Chris Pressey, Cat's Eye Technologies. | |
25 | All rights reserved. | |
26 | ||
27 | Redistribution and use in source and binary forms, with or without | |
28 | modification, are permitted provided that the following conditions | |
29 | are met: | |
30 | ||
31 | 1. Redistributions of source code must retain the above copyright | |
32 | notices, this list of conditions and the following disclaimer. | |
33 | 2. Redistributions in binary form must reproduce the above copyright | |
34 | notices, this list of conditions, and the following disclaimer in | |
35 | the documentation and/or other materials provided with the | |
36 | distribution. | |
37 | 3. Neither the names of the copyright holders nor the names of their | |
38 | contributors may be used to endorse or promote products derived | |
39 | from this software without specific prior written permission. | |
40 | ||
41 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
42 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, BUT NOT | |
43 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | |
44 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | |
45 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | |
46 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | |
47 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
48 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | |
49 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
50 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | |
51 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
52 | POSSIBILITY OF SUCH DAMAGE. |
0 | This is free and unencumbered software released into the public domain. | |
1 | ||
2 | Anyone is free to copy, modify, publish, use, compile, sell, or | |
3 | distribute this software, either in source code form or as a compiled | |
4 | binary, for any purpose, commercial or non-commercial, and by any | |
5 | means. | |
6 | ||
7 | In jurisdictions that recognize copyright laws, the author or authors | |
8 | of this software dedicate any and all copyright interest in the | |
9 | software to the public domain. We make this dedication for the benefit | |
10 | of the public at large and to the detriment of our heirs and | |
11 | successors. We intend this dedication to be an overt act of | |
12 | relinquishment in perpetuity of all present and future rights to this | |
13 | software under copyright law. | |
14 | ||
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | |
18 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR | |
19 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | |
20 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | |
21 | OTHER DEALINGS IN THE SOFTWARE. | |
22 | ||
23 | For more information, please refer to <http://unlicense.org/> |
0 | 0 | -- |
1 | -- Copyright (c)2007-2020 Chris Pressey, Cat's Eye Technologies. | |
2 | -- All rights reserved. | |
3 | -- | |
4 | -- Redistribution and use in source and binary forms, with or without | |
5 | -- modification, are permitted provided that the following conditions | |
6 | -- are met: | |
7 | -- | |
8 | -- 1. Redistributions of source code must retain the above copyright | |
9 | -- notices, this list of conditions and the following disclaimer. | |
10 | -- 2. Redistributions in binary form must reproduce the above copyright | |
11 | -- notices, this list of conditions, and the following disclaimer in | |
12 | -- the documentation and/or other materials provided with the | |
13 | -- distribution. | |
14 | -- 3. Neither the names of the copyright holders nor the names of their | |
15 | -- contributors may be used to endorse or promote products derived | |
16 | -- from this software without specific prior written permission. | |
17 | -- | |
18 | -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
19 | -- ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, BUT NOT | |
20 | -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | |
21 | -- FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | |
22 | -- COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | |
23 | -- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | |
24 | -- BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
25 | -- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | |
26 | -- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
27 | -- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | |
28 | -- ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
29 | -- POSSIBILITY OF SUCH DAMAGE. | |
30 | -- | |
31 | ||
32 | -- | |
33 | -- mascarpone.hs v2020.smth | |
1 | -- mascarpone.hs v2020.04xx | |
34 | 2 | -- |
35 | 3 | -- Reference interpreter for |
36 | 4 | -- The Mascarpone Programming Language |
37 | 5 | -- v1.0 |
6 | -- | |
7 | -- This work is in the public domain. See the file UNLICENSE in the | |
8 | -- root directory of the Mascarpone distribution for more details. | |
38 | 9 | -- |
39 | 10 | |
40 | 11 | module Language.Mascarpone where |