HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/debout/debout.nl/vendor/scrivo/highlight.php/test/markup/pony/control-flow.txt
if a == b and b == a then
  env.out.print("they are the same")
elseif a > b or b < a then
  env.out.print("a is bigger")
else
  env.out.print("b bigger")
end

while count <= 10 do
  env.out.print(count.string())
  count = count + 1
end

for name in ["Bob"; "Fred"; "Sarah"].values() do
  env.out.print(name)
end

repeat
      env.out.print("hello!")
      counter = counter + 1
until counter > 7 end