blob: 6640c6c55628110d3f02059cce25cb47feb94614 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PortEngine;
namespace PortsTerminal
{
class Program
{
static void Main(string[] args)
{
bool RunConsole = true;
PortsTerminalAPI.InitializeConsole();
while(RunConsole == true)
{
PortsTerminalAPI.RunCommand(Console.ReadLine());
}
Console.ReadLine();
}
}
}
|