C-plus-minus 2.2.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- c_plus_minus-2.2.8/C_plus_minus.egg-info/PKG-INFO +34 -0
- c_plus_minus-2.2.8/C_plus_minus.egg-info/SOURCES.txt +7 -0
- c_plus_minus-2.2.8/C_plus_minus.egg-info/dependency_links.txt +1 -0
- c_plus_minus-2.2.8/C_plus_minus.egg-info/requires.txt +1 -0
- c_plus_minus-2.2.8/C_plus_minus.egg-info/top_level.txt +1 -0
- c_plus_minus-2.2.8/PKG-INFO +34 -0
- c_plus_minus-2.2.8/README.md +26 -0
- c_plus_minus-2.2.8/pyproject.toml +13 -0
- c_plus_minus-2.2.8/setup.cfg +4 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: C-plus_minus
|
|
3
|
+
Version: 2.2.8
|
|
4
|
+
Summary: The worst programming language
|
|
5
|
+
Requires-Python: >=3.8
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: pygame>=2.5.0
|
|
8
|
+
|
|
9
|
+
# C± (CPM) Programming Language
|
|
10
|
+
|
|
11
|
+
A minimalist time-driven esoteric programming language powered by a single command: `enter`.
|
|
12
|
+
|
|
13
|
+
## 🕒 How It Works
|
|
14
|
+
The core logic of C± relies entirely on the current local time. Every time you trigger the `enter` command, the interpreter checks the current minute, takes its last digit, and maps it into a command ID from 1 to 5 using the following rule:
|
|
15
|
+
* Digits **1, 2, 3, 4, 5** remain unchanged.
|
|
16
|
+
* Digit **6** ➡️ 1
|
|
17
|
+
* Digit **7** ➡️ 2
|
|
18
|
+
* Digit **8** ➡️ 3
|
|
19
|
+
* Digit **9** ➡️ 4
|
|
20
|
+
* Digit **0** ➡️ 5
|
|
21
|
+
|
|
22
|
+
## 🚀 Getting Started
|
|
23
|
+
Install the library using the following command:
|
|
24
|
+
```bash
|
|
25
|
+
pip install C±
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Run the main package script:
|
|
29
|
+
```bash
|
|
30
|
+
python -m cpm.main_pygame
|
|
31
|
+
```
|
|
32
|
+
Every mouse click or screen tap sends an `enter` command, appending the generated command ID to the screen dynamically.
|
|
33
|
+
|
|
34
|
+
start = start()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pygame>=2.5.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: C-plus_minus
|
|
3
|
+
Version: 2.2.8
|
|
4
|
+
Summary: The worst programming language
|
|
5
|
+
Requires-Python: >=3.8
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: pygame>=2.5.0
|
|
8
|
+
|
|
9
|
+
# C± (CPM) Programming Language
|
|
10
|
+
|
|
11
|
+
A minimalist time-driven esoteric programming language powered by a single command: `enter`.
|
|
12
|
+
|
|
13
|
+
## 🕒 How It Works
|
|
14
|
+
The core logic of C± relies entirely on the current local time. Every time you trigger the `enter` command, the interpreter checks the current minute, takes its last digit, and maps it into a command ID from 1 to 5 using the following rule:
|
|
15
|
+
* Digits **1, 2, 3, 4, 5** remain unchanged.
|
|
16
|
+
* Digit **6** ➡️ 1
|
|
17
|
+
* Digit **7** ➡️ 2
|
|
18
|
+
* Digit **8** ➡️ 3
|
|
19
|
+
* Digit **9** ➡️ 4
|
|
20
|
+
* Digit **0** ➡️ 5
|
|
21
|
+
|
|
22
|
+
## 🚀 Getting Started
|
|
23
|
+
Install the library using the following command:
|
|
24
|
+
```bash
|
|
25
|
+
pip install C±
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Run the main package script:
|
|
29
|
+
```bash
|
|
30
|
+
python -m cpm.main_pygame
|
|
31
|
+
```
|
|
32
|
+
Every mouse click or screen tap sends an `enter` command, appending the generated command ID to the screen dynamically.
|
|
33
|
+
|
|
34
|
+
start = start()
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# C± (CPM) Programming Language
|
|
2
|
+
|
|
3
|
+
A minimalist time-driven esoteric programming language powered by a single command: `enter`.
|
|
4
|
+
|
|
5
|
+
## 🕒 How It Works
|
|
6
|
+
The core logic of C± relies entirely on the current local time. Every time you trigger the `enter` command, the interpreter checks the current minute, takes its last digit, and maps it into a command ID from 1 to 5 using the following rule:
|
|
7
|
+
* Digits **1, 2, 3, 4, 5** remain unchanged.
|
|
8
|
+
* Digit **6** ➡️ 1
|
|
9
|
+
* Digit **7** ➡️ 2
|
|
10
|
+
* Digit **8** ➡️ 3
|
|
11
|
+
* Digit **9** ➡️ 4
|
|
12
|
+
* Digit **0** ➡️ 5
|
|
13
|
+
|
|
14
|
+
## 🚀 Getting Started
|
|
15
|
+
Install the library using the following command:
|
|
16
|
+
```bash
|
|
17
|
+
pip install C±
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Run the main package script:
|
|
21
|
+
```bash
|
|
22
|
+
python -m cpm.main_pygame
|
|
23
|
+
```
|
|
24
|
+
Every mouse click or screen tap sends an `enter` command, appending the generated command ID to the screen dynamically.
|
|
25
|
+
|
|
26
|
+
start = start()
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "C-plus_minus"
|
|
7
|
+
version = "2.2.8"
|
|
8
|
+
description = "The worst programming language"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"pygame>=2.5.0",
|
|
13
|
+
]
|