Talk:Loop structures: Difference between revisions

m
Katsumi a.k.a. Upperdecker2562 moved page Talk:Loop Structures to Talk:Loop structures
m (Katsumi a.k.a. Upperdecker2562 moved page Talk:Loop Structures to Talk:Loop structures)
 
(One intermediate revision by one other user not shown)
Line 22:
The task description says "'''Examples to be posted here should instead be posted in an appropriate Iteration page'''" -- but there are lots of examples. Should this be fixed? Perhaps this page should not be marked as a task? Or is the intent that this contains an overview, without detailed examples, of the language's looping constructs? --[[User:Kevin Reid|Kevin Reid]] 00:48, 20 May 2009 (UTC)
:It's definitely something that needs to be fixed. The idea was that the examples here were supposed to move to their proper Loop pages, but no one really noticed. If you can help out with it go ahead. I think content can simply be removed from here as it's migrated until we feel comfortable deleting the page. --[[User:Mwn3d|Mwn3d]] 01:06, 20 May 2009 (UTC)
 
== Loop n times ==
 
At least one loop structure does not yet have a separate task: the '''Repeat n''' loop, which is available at least on [[Logo]] and [[Vedit macro language]]. Example:
<lang vedit>
Repeat(100) {
Message("Spam")
}
</lang>
--[[User:PauliKL|PauliKL]] 11:47, 14 July 2009 (UTC)