Why Zerionyx?
- Beginner-friendly syntax ideal for learning programming
- Built-in tools for common task automation
- Visual feedback and clear error messages
- Educational libraries for math and basic algorithms
- Simple file handling and system automation
- Great for teaching programming concepts to children
Best Use Cases
- Perfect for: Learning programming, educational projects, and basic task automation
- Easy syntax: Designed for clarity and learning, not performance
- Note: Not recommended for computation-heavy tasks or production-level applications
Example
println("Hello, World!")
x = 10
y = 20
println(x + y)
defun add(a, b)
return a + b
done
println(add(5, 3))
nums = [1, 2, 3, 4, 5]
println(nums)
How to Use Zerionyx
- Install: Clone the repository from GitHub.
- Setup: Add Zerionyx to your
PATH
if you want to run it from anywhere.
- Run a file:
python ./interpreter/Zerionyx.py yourfile.zer
- Open interactive shell: Just run
python ./interpreter/Zerionyx.py
and start typing Zerionyx code.
- Get help: Type
grammar
, license
or copyright
in the shell for info.
- Documentation: Read the full docs here.