Files
c-sharp/Szamrendszer/Program.cs

15 lines
310 B
C#
Raw Normal View History

2022-04-01 11:17:06 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Szamrendszer {
internal class Program {
static void Main(string[] args) {
Atvalto atvalto = new Atvalto();
Console.ReadKey();
}
}
}