Welcome to z^2!
A complex, yet fun language.
This website will give you all the information about z^2, including installation, contact information, and more! We hope you enjoy!
About z^2
Z^2 is a complex language written in Python3. The language's main focus is to challenge hackers with the moderate syntax, and it's "behavior". "Behavior" meaning it's unique compiling with the code.
A small example of some z^2 code is here:
// A simple fibonacci sequence function
// Defines the Fibonacci function
function Fibonacci(num) { // Creates an arg 'num'
whatif num <= 1 {
return(num)
}
else {
return(Fibonacci(num-1) + Fibonacci(num-2))
}
ask = prompt("amount of fibonacci sequence? ")
for fib_seq in span(ask) {
print(Fibonacci(fib_seq))
}