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

6 lines
87 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: halving ( n -- )
begin dup 0 >
while cr dup . 2/
repeat drop ;
1024 halving