Jamie Balfour

Welcome to my personal website.

Find out more about me, my personal projects, reviews, courses and much more here.

Official ZPE/YASS documentationDifferent ways of writing it

One of ZPE's biggest prides is that there are many ways of writing something and it all depends on your style.

The main reason behind this is to make it easier to come from different languages, and whilst YASS does offer some flexibility, it does not lead to incompatibilities.

It's also important to note that although there is flexibility in YASS, it is not designed to be syntactically the same as other languages.

Here's an example

YASS
for ($i = 0 to 1000){
  print($i)
}
for (i = 0 to 1000){
  print(i)
}

for ($i = 0 to 1000)
  print($i)
end for

for ($i = 0 to 1000)
  print($i)
end loop

for $i = 0 to 1000:
  print($i)
end for
  

From the above, you can see several ways of writing the same code and you'll notice:

  • ZPE has supported for...end for since the beginning.
  • ZPE has supported for { } since near the beginning.
  • ZPE has also supported for...end loop (and of course while...end while and while...end loop)
Comments

There are no comments on this page.

New comment

Comments are welcome and encouraged, including disagreement and critique. However, this is not a space for abuse. Disagreement is welcome; personal attacks, harassment, or hate will be removed instantly. This site reflects personal opinions, not universal truths. If you can’t distinguish between the two, this probably isn’t the place for you. The system temporarily stores IP addresses and browser user agents for the purposes of spam prevention, moderation, and safeguarding. This data is automatically removed after fourteen days. Your email address is stored so that replies can be sent to your email address.

Comments powered by BalfComment

Feedback 👍
Comments are sent via email to me.