She++ is a programming language with clean, easy-to-read syntax. Perfect for beginners and anyone who wants a more human-friendly way to write code.
install.batAdd Path at envionment variable - C:\Program Files\She++Then you can use she from anywhere in Command Prompt.
sheshe <filename.she> or she <filename>ExecutionInitializer [
display["Hello World!"]
number x = 10
number y = 200
number z = x + y
number w = x - y
number v = x * y
number u = x / y
number result = 2 + 3 * 4
display[2]
display[x]
display[y]
display[z]
display[w]
display[v]
display[u]
display[result]
]E:\Project\Test>she Test
Hello World!
2
10
200
210
-190
2000
0
14Want to set it up? See SETUP_GUIDE.md for installation and setup instructions.
- Simple variable handling
- Basic arithmetic operations
- Display/output support
- Clean, readable syntax
This project is open source. Feel free to use, modify, and share.
Check the documentation or look at the examples folder. Most answers are there!