langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
13
Task/Loops-N-plus-one-half/REBOL/loops-n-plus-one-half.rebol
Normal file
13
Task/Loops-N-plus-one-half/REBOL/loops-n-plus-one-half.rebol
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
REBOL [
|
||||
Title: "Loop Plus Half"
|
||||
Date: 2009-12-16
|
||||
Author: oofoe
|
||||
URL: http://rosettacode.org/wiki/Loop/n_plus_one_half
|
||||
]
|
||||
|
||||
repeat i 10 [
|
||||
prin i
|
||||
if 10 = i [break]
|
||||
prin ", "
|
||||
]
|
||||
print ""
|
||||
Loading…
Add table
Add a link
Reference in a new issue