Time for an 2014 update…

This commit is contained in:
Ingy döt Net 2014-01-17 05:32:22 +00:00
parent 372c577f83
commit 09687c4926
2520 changed files with 34227 additions and 7318 deletions

View file

@ -26,6 +26,5 @@ hailstone: procedure expose @.; parse arg n 1 s 1 o /*N,S,O = 1st arg.*/
else n=n%2 /* " " " even, perform fast ÷ */
s=s n /*build a sequence list (append).*/
end /*forever*/
@.o=s /*memoization for this hailstone.*/
@.o=subword(s,2)
@.o=subword(s,2) /*memoization for this hailstone.*/
return s