/pgr-lib-calc-01

Bilioteca de operações matemáticas

Primary LanguageC#MIT LicenseMIT

LibraryCalc01

Bilioteca de operações matemáticas

Build status

Nuget

How to install

Install-Package LibraryCalc01 -Version 1.0.2

using System;

namespace Calculate
{
    class Program
    {
        static void Main( string[] args )
        {
            var result = new LibraryCalc01.Addition( ).Calculate( 1, 2, 3, 4, 5, 5, 6, 8, 9, 10, 11 );

            Console.WriteLine( result );
        }
    }
}