RosettaCodeData/Task/Anonymous-recursion/Mathematica/anonymous-recursion-2.math

10 lines
70 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
check := (Print[#];#<0)&
fib /@ Range[0,4]
0
1
2
3
4
{1, 1, 2, 3, 5}