All pastes #2071810 Raw Edit

Mine

public text v1 · immutable
#2071810 ·published 2011-05-30 03:22 UTC
rendered paste body
These two codes are exactly the same:
x=0
while(x<16)
{
show_message("YOU ARE MY FRIEND")
x+=1
}
-----
for(x=0;x<16;x+=1)
{
show_message("YOU ARE MY FRIEND")
}