Official Website of Zuko

Zuko is a dynamically typed interpreted programming language that is designed to be simple and efficient

Mockup

var k=1
while(k<=15)
{
  if(k%3==0 and k%5==0)
    println("FizzBuzz")
  else if(k%5==0)
    println("Buzz")
  else if(k%3==0)
    println("Fizz")
  else
    println(k)
  k+=1
}

User Friendly

Clear and concise syntax

Performant

Fast and lightweight

Hassle Free

Easy to learn and use