Skip to main content
April 10, 2008
Question

0 <= i <= 100

  • April 10, 2008
  • 5 replies
  • 395 views
Hallihallo!

is it able to use a term like 0 <= i <= 100 without tipping a lot of code? maybe in an "if () etc thing?
This topic has been closed for replies.

5 replies

kglad
Community Expert
Community Expert
April 10, 2008
bitte.
April 10, 2008
Ja, danke!

it's eastern-german for thank's a lot.
@kglad - the second one is the think i searched for. thank's!
@dsjfhaks - thank you too!

Damon Edwards
Inspiring
April 10, 2008
sorry, stepped away during my reply, guess I took too long :)
Damon Edwards
Inspiring
April 10, 2008
:
kglad
Community Expert
Community Expert
April 10, 2008
it's not clear what you're asking. but actionscript has for-loops:

for(var i:int=0;i<=100;i++){
trace(i);
}

and it has if-statements:

for(var i:int=0;i<=100;i++){
if(i>22 && i< 44){
trace(i);
}
}