Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
|
|
@ -13,20 +13,20 @@ $sequence = "";
|
|||
// Prepare a loop
|
||||
$i = 0;
|
||||
:calcnextnumber;
|
||||
$i = $i++;
|
||||
$i = $i++;
|
||||
|
||||
// Do the calculation for this loop iteration
|
||||
$b = $a + $b;
|
||||
$a = $b - $a;
|
||||
// Do the calculation for this loop iteration
|
||||
$b = $a + $b;
|
||||
$a = $b - $a;
|
||||
|
||||
// Add the result to the sequence
|
||||
$sequence = $sequence << $a;
|
||||
// Add the result to the sequence
|
||||
$sequence = $sequence << $a;
|
||||
|
||||
// Make the loop run a fixed number of times
|
||||
if $i < $n; {
|
||||
$sequence = $sequence << ", ";
|
||||
goto calcnextnumber;
|
||||
}
|
||||
// Make the loop run a fixed number of times
|
||||
if $i < $n; {
|
||||
$sequence = $sequence << ", ";
|
||||
goto calcnextnumber;
|
||||
}
|
||||
|
||||
// Use the loop counter as the placeholder
|
||||
$i--;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue