spore-lang 0.0.0

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.
@@ -0,0 +1 @@
1
+ 3.14
package/Cargo.lock ADDED
@@ -0,0 +1,7 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "spore-lang"
7
+ version = "0.0.1"
package/Cargo.toml ADDED
@@ -0,0 +1,8 @@
1
+ [package]
2
+ name = "spore-lang"
3
+ version = "0.0.1"
4
+ edition = "2024"
5
+ description = "spore language"
6
+ license = "MIT OR Apache-2.0"
7
+
8
+ [dependencies]
package/README.md ADDED
File without changes
package/main.py ADDED
@@ -0,0 +1,6 @@
1
+ def main():
2
+ print("Hello from spore-lang!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "spore-lang",
3
+ "version": "0.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "keywords": [],
7
+ "author": "",
8
+ "license": "ISC",
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ }
12
+ }
package/pyproject.toml ADDED
@@ -0,0 +1,7 @@
1
+ [project]
2
+ name = "spore-lang"
3
+ version = "0.0.1"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.14"
7
+ dependencies = []
package/src/main.rs ADDED
@@ -0,0 +1,3 @@
1
+ fn main() {
2
+ println!("Hello, world!");
3
+ }