๐Ÿ“˜ Computing Fibonacci numbers using Perl 6

๐Ÿ“˜ Computing Fibonacci numbers using Raku

N. B. Perl 6 has been renamed to Raku. Click to read more.


Print the Nth Fibonacci number.

Fibonacci numbers are defined by the recurring formula: fn = fn-1 + fn-2.

In Perl, you can assign two values at a time (see Task 48, Swap two values). You can use that technique for calculating the next Fibonacci number from the previous two. To bootstrap the algorithm, the two first values are needed. In one of the definitions of the Fibonacci row, the first two values are both 1 (sometimes, you may see that the first number is 0).

my ($a, $b) = (1, 1);
($a, $b) = ($b, $a + $b) for 3 .. 10;
say $b;

Another way of generating the sequence is to use the sequence operator. With this operator, you create a lazy list, which calculates its values according to the formula given in the generator argument.

my @fib = 1, 1, * + * ... *;
say @fib[9];

Theย @fib array is a sequence. Its first two elements are both 1, but the rest are defined by the formulaย * + *. This code creates an anonymous block that is equivalent to the body of a function with two arguments:ย {$a + $b}. Thus, the element is a sum of its two neighbours. The right end of the sequence is specified asย *, which means that it generates numbers infinitely, based on the demand.

The next line just takes the 10th element of the array and prints its value:

55

Leave a Reply

Your email address will not be published. Required fields are marked *

Retype the CAPTCHA code from the image
Change the CAPTCHA codeSpeak the CAPTCHA code