Mine
public text v1 · immutableThese 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")
}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")
}