Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created January 14, 2019 21:00
Embed
What would you like to do?
using Matematica;
using System;
namespace Soma
{
class Program
{
static void Main(string[] args)
{
var soma = new OperacoesMatematicas().Soma(15, 10);
Console.WriteLine(soma);
Console.ReadKey();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment