MyFirstRepo/Program.cs
Bogdan golivec 4a27b6f247 commit
2025-02-26 09:41:55 +03:00

22 lines
343 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleGitea
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hi");
int a = 42;
int b = 119;
int c = a + b;
Console.WriteLine(c);
Console.ReadKey();
}
}
}