You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Minor correction in the exercise 11 notebook: I think the intended variable name for the variable $square is $double since we are doubling each value in the sequence rather than squaring it :).
%%rumble
let $sequence := 1 to 10
for $value in $sequence
let $square := $value * 2 // doubling operation
where $square < 10
return $square
The text was updated successfully, but these errors were encountered:
Minor correction in the exercise 11 notebook: I think the intended variable name for the variable
$square
is$double
since we are doubling each value in the sequence rather than squaring it :).The text was updated successfully, but these errors were encountered: