SearchBox/SearchBox-CLI/Program.cs

16 lines
240 B
C#
Raw Normal View History

2018-09-02 15:36:37 +00:00
using System;
using SearchBox;
namespace SearchBoxCLI
{
class MainClass
{
public static void Main(string[] args)
{
string input = Console.In.ReadToEnd();
Index index = new Index(input);
Console.WriteLine(index);
}
}
}