⚡
Fast
Built with Zig for maximum performance. No garbage collection pauses.
Fast, lightweight, and embeddable scripting language
# Clone and build
git clone https://github.com/shishtpal/zpy.git
cd zpy
zig build
# Run a script
./zig-out/bin/zpy script.zpy
# Start interactive REPL
./zig-out/bin/zpy# Define a function
def greet(name):
print("Hello,", name)
# Call it
greet("World")
# Lists and loops
numbers = [1, 2, 3, 4, 5]
for n in numbers:
print(n * 2)