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

10 lines
70 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
check := (Print[#];#<0)&
fib /@ Range[0,4]
0
1
2
3
4
{1, 1, 2, 3, 5}