RosettaCodeData/Task/Loops-While/Forth/loops-while.fth

6 lines
87 B
Forth
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
: halving ( n -- )
begin dup 0 >
while cr dup . 2/
repeat drop ;
1024 halving