20 lines
442 B
C#
Executable File
20 lines
442 B
C#
Executable File
using System;
|
|
|
|
namespace ErrorsManager{
|
|
class Program{
|
|
public static void Main(string[] args){
|
|
|
|
// Tests.errors();
|
|
// Tests.conversions();
|
|
// Tests.alphabet();
|
|
// Tests.bitwise();
|
|
// Tests.bitwise_sucesive();
|
|
// Tests.bits();
|
|
// Tests.reset();
|
|
// Tests.ranges();
|
|
// Tests.has();
|
|
Tests.set();
|
|
|
|
}
|
|
}
|
|
} |