Silicon: A new language made with Python.
Project description
💎 Silicon.py (v0.2.3)
Silicon is a custom-built, high-logic programming language designed for structured data manipulation and iterative logic. Built with the "Industrial Library" philosophy, Silicon separates data into distinct namespaces (vars, arrs, funcs) to ensure maximum memory clarity and zero variable shadowing.
🚀 Installation
Silicon is available on PyPI. Install it globally or in your virtual environment:
pip install silicon.py
🛠 Usage
Silicon uses the .sil extension. Once installed, you can execute your scripts using the sili command:
sili your\_script.sil
🏗 Language Syntax
Silicon introduces a unique Action-Library syntax. To modify data, you must call the action through the appropriate library.
1. Variables and Arrays
Definitions and assignments are distinct steps. This ensures intentional memory allocation.
~~ Define your data ~~
define(type:Var \= playerName)
define(type:Arr \= inventory)
~~ Set values using the Library:Action syntax ~~
vars.playerName:Set("Architect")
arrs.inventory:Set("Hammer", "Shield", "Silicon Core")
2. The cond() Logic (v0.2.2+)
Silicon v0.2.2 replaced the traditional if with the unified cond() system. It supports single-pass conditions (if) and loops (during).
Supported Logic Operators:
alt;(OR)also;(AND)not;(NOT)
cond(during vars.health \> 0):
log(console, "Character is alive...")
cond(if vars.energy \< 10 also; vars.hasPotion \== true):
log(console, "Energy low\! Drinking potion...")
:end
:end
📑 Roadmap
- [x] v0.2.2: Unified cond() logic and semantic operators (alt;, also;).
- [x] v0.2.3: Official rebranding to Silicon, .sil extension, and sili CLI.
- [x] v0.2.4: Added
README.mdfor better guides on use.
🤝 Contributing
Silicon is an open-source project by qwertydev. Feel free to fork the repo and submit pull requests for new built-in actions or library features!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file silicon_py-0.2.4.tar.gz.
File metadata
- Download URL: silicon_py-0.2.4.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7724c1f3b543506088ac9e05cd6687781b053d8b54ffe413abfc569d7362b25b
|
|
| MD5 |
550b2ee6883410dfdf526aacd897ac66
|
|
| BLAKE2b-256 |
598d22754284d426f03e28750c84a57223dc5a724f5f3823857204cbad0bfeac
|
File details
Details for the file silicon_py-0.2.4-py3-none-any.whl.
File metadata
- Download URL: silicon_py-0.2.4-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eed9b2cbd5f4fabde91478af853d4c507ced1aeca1c6d371e4530f1fc1cddaa6
|
|
| MD5 |
1ecf1892bc4b6a43196616232f5dbb79
|
|
| BLAKE2b-256 |
c899e7c04a81ba7e5fab77827d18797cfa7a8d0b56afbd6839a3ead03c698a63
|