https://github.com/jewishlewish/cyberslvt
Cursed and Experimental Coding Language
https://github.com/jewishlewish/cyberslvt
Last synced: 3 months ago
JSON representation
Cursed and Experimental Coding Language
- Host: GitHub
- URL: https://github.com/jewishlewish/cyberslvt
- Owner: JewishLewish
- License: gpl-3.0
- Created: 2022-11-14T04:31:22.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-07T04:11:22.000Z (over 2 years ago)
- Last Synced: 2025-01-24T06:26:53.596Z (5 months ago)
- Language: Python
- Homepage:
- Size: 162 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
# CyberSlvt
Cyberslvt was created as a 'joke' coding language for me to work on while I was bored. It does function perfectly and I will work on minor updates time to time. If you are interested in adding more or forking onto the code then feel free to do so.## Statements
```She Said: [STRING]``` -> Outputs [STRING]```She Remembered: [VARIABLE NAME] = [VARIABLE's NAME VALUE]``` -> No Output. Saves variable.
```She Left``` -> Ends File.
```She Checked If: [CONDITION]``` -> Will Run Anything Inside, If it's true
```She Checked While: [CONDITION]``` -> Will Run Anything Inside, While it's true
## Callings
```var.[VARIABLE NAME]``` -> Replaces the variable with the value of the variable.```math{[INSERT MATH EQUATION]}``` -> Does the math inside the math{} calling. Outputs int.
```floatmath{[INSERT MATH EQUATION]}``` -> Does the math inside the math{} calling. Outputs float.
## Other
```;``` -> Can be used to make two lines of command run in one sentence.## Examples
```py
Input -> She Remembered: x = 2; She Said: var.x
Output -> 2
``````py
Input -> She Remembered: x = 2
She Checked While: var.x != 4
She Said: var.x
She Remembered: x = math{var.x + 1}
Output -> 2
3
```