git @ Cat's Eye Technologies Strelnokoff / ce0a924
Add README, LICENSE, stub of documentation. catseye 10 years ago
3 changed file(s) with 109 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 The contents of the Strelnokoff distribution are distributed under the
1 following three licenses.
2
3 All documentation (in the `doc` subdirectory) is covered by the following
4 BSD-compatible license, modelled after the "Report on the Programming
5 Language Haskell 98" license:
6
7 -----------------------------------------------------------------------------
8
9 Copyright (c)2012 Chris Pressey, Cat's Eye Technologies.
10
11 The authors intend this Report to belong to the entire Strelnokoff
12 community, and so we grant permission to copy and distribute it for
13 any purpose, provided that it is reproduced in its entirety,
14 including this Notice. Modified versions of this Report may also be
15 copied and distributed for any purpose, provided that the modified
16 version is clearly presented as such, and that it does not claim to
17 be a definition of the Strelnokoff Programming Language.
18
19 -----------------------------------------------------------------------------
20
21 The source code for the reference interpreter and supporting tools (in the
22 `script` subdirectory) is covered under the following BSD-style license:
23
24 -----------------------------------------------------------------------------
25
26 Copyright (c)2001-2012, Chris Pressey, Cat's Eye Technologies.
27 All rights reserved.
28
29 Redistribution and use in source and binary forms, with or without
30 modification, are permitted provided that the following conditions
31 are met:
32
33 Redistributions of source code must retain the above copyright
34 notices, this list of conditions and the following disclaimer.
35
36 Redistributions in binary form must reproduce the above copyright
37 notices, this list of conditions, and the following disclaimer in
38 the documentation and/or other materials provided with the
39 distribution.
40
41 Neither the names of the copyright holders nor the names of their
42 contributors may be used to endorse or promote products derived
43 from this software without specific prior written permission.
44
45 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
46 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, BUT NOT
47 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
48 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
49 COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
50 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
51 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
52 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
53 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
54 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
55 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
56 POSSIBILITY OF SUCH DAMAGE.
57
58 -----------------------------------------------------------------------------
59
60 All example sources in the `eg` directory were written by Chris Pressey,
61 and are hereby placed in the public domain, as described in the following
62 unlicense:
63
64 -----------------------------------------------------------------------------
65
66 This is free and unencumbered software released into the public domain.
67
68 Anyone is free to copy, modify, publish, use, compile, sell, or
69 distribute this software, either in source code form or as a compiled
70 binary, for any purpose, commercial or non-commercial, and by any
71 means.
72
73 In jurisdictions that recognize copyright laws, the author or authors
74 of this software dedicate any and all copyright interest in the
75 software to the public domain. We make this dedication for the benefit
76 of the public at large and to the detriment of our heirs and
77 successors. We intend this dedication to be an overt act of
78 relinquishment in perpetuity of all present and future rights to this
79 software under copyright law.
80
81 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
82 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
83 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
84 IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
85 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
86 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
87 OTHER DEALINGS IN THE SOFTWARE.
88
89 For more information, please refer to <http://unlicense.org/>
0 Strelnokoff
1 ===========
2
3 This is the reference distribution for Strelnokoff, an esoteric programming
4 language which is both imperative and non-deterministic.
5
6 There is no formal documentation to speak of as of yet, but if there ever
7 will be, it will be found in the `doc` subdirectory.
8
9 This distribution also contains an interpreter for Strelnokoff, written in
10 Perl, as `strelnokoff` in the `script` directory, and some example
11 Strelnokoff programs in the `eg` directory.
12
13 This distribution is BSD-license-compatible; see the file LICENSE for
14 detailed licensing information.
0 The Strelnokoff Programming Language
1 ====================================
2
3 Specification forthcoming. Maybe.