Initial Code Commit

A working version of the calculator. Very simple.
This commit is contained in:
Jordan Wages 2020-06-18 20:58:59 -04:00
commit d24a7b400a
18 changed files with 6071 additions and 0 deletions

17
src/App.xaml.cs Normal file
View file

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace AdvancedCalculator
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}