Chapter 14 : Loops

General Iteration

ReasonLIGO is a functional language where user-defined values are constant, therefore it makes no sense in ReasonLIGO to feature loops, which we understand as syntactic constructs where the state of a stopping condition is mutated, as with “while” loops in PascaLIGO.

Instead, ReasonLIGO loops are written by means of tail recursive functions

Here is how to compute the greatest common divisors of two natural numbers by means of Euclid’s algorithm:

let rec iter = ((x,y) : (nat, nat)) : nat =>
  if (y == 0n) { x; } else { iter ((y, x mod y)); };

let gcd = ((x,y) : (nat, nat)) : nat => {
  let (x,y) = if (x < y) { (y,x); } else { (x,y); };
  iter ((x,y))
};

Your mission

1- Check the proposed code in the editor. Notice that we created a star map as a list of planet records.

2- Notice the unimplemented scan function. Suppose this function is called from the main function with the star_map variable as its input l. Iterates through each record of the list (seen in Chapter Lists) in order to find a planet that respects specified conditions (see step 3).

3- Define a function conditions which computes in an accumulator the list of planet verifying some conditions: density superior to 100 and atmospheric_activity true. If conditions are met, the function conditions adds this planet to the accumulator. Don’t forget to cast the initial value of the accumulator (as a list of planet).