A rather larger step towards REUSE.
Chris Pressey
8 months ago
0 | 0 |
ZOWIE version history
|
1 | 1 |
=====================
|
|
2 |
|
|
3 |
<!--
|
|
4 |
SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
5 |
For more information, please refer to <https://unlicense.org/>
|
|
6 |
SPDX-License-Identifier: Unlicense
|
|
7 |
-->
|
2 | 8 |
|
3 | 9 |
Version 1.0 (Dec 29 2009)
|
4 | 10 |
-------------------------
|
|
0 |
This work is derived from sample code posted at the following URL:
|
|
1 |
|
|
2 |
https://gist.github.com/bnmnetp/4650616
|
|
3 |
|
|
4 |
The license under which this code has been distributed has not
|
|
5 |
been specified, however it is believed that it is reasonable
|
|
6 |
to interpret the manner in which it has been presented as giving
|
|
7 |
general license to use it as a starting point to build upon to
|
|
8 |
create derivative works. It is under this interpretation that
|
|
9 |
the present work is also distributed.
|
0 | 0 |
ZOWIE
|
1 | 1 |
=====
|
|
2 |
|
|
3 |
<!--
|
|
4 |
SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
5 |
For more information, please refer to <https://unlicense.org/>
|
|
6 |
SPDX-License-Identifier: Unlicense
|
|
7 |
-->
|
2 | 8 |
|
3 | 9 |
_Try it online_ [@ catseye.tc](https://catseye.tc/installation/ZOWIE)
|
4 | 10 |
| _Wiki entry_ [@ esolangs.org](https://esolangs.org/wiki/ZOWIE)
|
0 | 0 |
<!DOCTYPE html>
|
|
1 |
<!--
|
|
2 |
SPDX-FileCopyrightText: 2013 Bradley Miller, https://gist.github.com/bnmnetp
|
|
3 |
SPDX-FileCopyrightText: 2014 Chris Pressey, Cat's Eye Technologies
|
|
4 |
|
|
5 |
SPDX-License-Identifier: LicenseRef-Unspecified-X-bnmnetp
|
|
6 |
-->
|
1 | 7 |
<html>
|
2 | 8 |
<!-- adapted from https://gist.github.com/bnmnetp/4650616 -->
|
3 | 9 |
<head>
|
|
0 |
// SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
1 |
// For more information, please refer to <https://unlicense.org/>
|
|
2 |
// SPDX-License-Identifier: Unlicense
|
|
3 |
|
0 | 4 |
function launch(config) {
|
1 | 5 |
config.container.innerHTML = `
|
2 | 6 |
<textarea id="prog" rows="10" cols="80"></textarea>
|
0 | 0 |
<!DOCTYPE html>
|
|
1 |
<!--
|
|
2 |
SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
3 |
For more information, please refer to <https://unlicense.org/>
|
|
4 |
SPDX-License-Identifier: Unlicense
|
|
5 |
-->
|
1 | 6 |
<head>
|
2 | 7 |
<meta charset="utf-8">
|
3 | 8 |
<title>zowie-hs</title>
|
4 | 4 |
# Adapted to run under Skulpt Oct 10 2013
|
5 | 5 |
# Adapted to compile under RPython Sep 2014
|
6 | 6 |
# Adapted to run under both Python 2 and 3 Jun 22 2021
|
7 | |
# This source code is in the public domain.
|
8 | 7 |
#
|
|
8 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
9 |
# For more information, please refer to <https://unlicense.org/>
|
|
10 |
# SPDX-License-Identifier: Unlicense
|
9 | 11 |
|
10 | 12 |
import sys
|
11 | 13 |
|