Files

14 lines
306 B
C#
Raw Permalink Normal View History

2019-02-11 01:47:11 +00:00
/**
* Benchmark of Reed-Solomon encoding.
*
* Copyright 2015, Backblaze, Inc. All rights reserved.
* Copyright © 2019 Natalia Portillo
*/
namespace ReedSolomonBenchmark
{
internal class Program
{
public static void Main(string[] args) => new ReedSolomonBenchmark().Run();
}
}