Skip to content

Commit

Permalink
Just write hello world for the test
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimdekker committed Feb 13, 2024
1 parent ccb417b commit be1e6bb
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions Aplib.Core/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,6 @@ namespace Aplib.Core
{
public class SonarTest
{
public void Main()
{
Console.WriteLine("Hello World!");
int i = 0;

while (i < 10)
{
Console.WriteLine(i);
i++;
}

Console.WriteLine("i is 1");
}
public void Main() => Console.WriteLine("Hello World!");
}
}

0 comments on commit be1e6bb

Please sign in to comment.