-
Notifications
You must be signed in to change notification settings - Fork 2
Example Code
Maximilian Winter edited this page Apr 7, 2022
·
10 revisions
Code for calculating the first 50 fibonacci number and write them to console.
module MainModule;
import System;
using System;
// Fibonacci Example
function FindFibonacciNumber(n)
{
var count= 2;
var a = 1;
var b = 1;
var c = 1;
if(n == 0)
{
return 0;
}
while(count<n)
{
c = a + b;
a = b;
b = c;
count++;
}
return c;
}
for(var i = 0; i < 50; i++)
{
PrintLine(FindFibonacciNumber(i));
}