fOOrth/docs/snippets/int_log2.foorth

8 lines
118 B
Text
Raw Permalink Normal View History

2015-02-14 16:40:35 +01:00
// A simple integer log2
2015-02-16 21:53:40 +01:00
: ilog2 .to_i 2/ 0 swap
begin
2015-02-14 16:40:35 +01:00
dup 0> while
2/ swap 1+ swap
again
drop ;