Skip to content

Commit

Permalink
Random code
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisBjorlingh committed Jan 19, 2021
1 parent 31f1dea commit 37a267f
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion GitAndDebugg/Program.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,30 @@
using System;
using System.Linq;

namespace GitAndDebugg
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
int x = 5;
int y = 6;

int result = GetSum(x, y);

int[] list = Enumerable.Range(1, 10000).ToArray();

for (int i = 0; i < list.Length; i++)
{
Console.WriteLine(i);
}

Console.WriteLine("Hej");
}

private static int GetSum(int x, int y)
{
return x + y;
}
}
}

0 comments on commit 37a267f

Please sign in to comment.