diff --git a/Program.cs b/Program.cs index 9aa3cb6..ce2f487 100644 --- a/Program.cs +++ b/Program.cs @@ -1,6 +1,5 @@ using System; using MathLibrary; // Importing Math Library -// Changes in namespace MathApplication { @@ -14,11 +13,9 @@ static void Main(string[] args) // Declare variables and use methods from MathLibrary float substract = math.Substract(5, 2); float multiply = math.Multiply(5, 2); - float divide = math.Divide(5, 2); + float divide = math.Devide(5, 2); float power = math.Power(5); - Console.WriteLine("This Application uses functions from MathLibrary.dll todo simple calculations"); - // Print results on screen Console.WriteLine(substract); Console.WriteLine(multiply); @@ -28,4 +25,30 @@ static void Main(string[] args) Console.ReadLine(); } } + + class AnotherClass + { + public void Print() + { + Console.WriteLine("hello"); + } + } + + class AndAnotherClass + { + public void Print() + { + // Pull Request + Console.WriteLine("hello"); + Console.WriteLine("wow!"); + Console.WriteLine("wow!"); + Console.WriteLine("wow!"); + Console.WriteLine("hello"); + Console.WriteLine("wow!"); + Console.WriteLine("wow!"); + Console.WriteLine("wow!"); + Console.WriteLine("wow!"); + Console.WriteLine("wow!"); + } + } } diff --git a/README.md b/README.md index a3bb178..de558c4 100644 --- a/README.md +++ b/README.md @@ -12,4 +12,4 @@ The code is divided into individual repositories. [SampleLibrary](https://github.com/houghj16/SampleLibrary) | Contains some sample code to define a math library -To try out the scenario, download and extract [this zip]() \ No newline at end of file +To try out the scenario, download and extract [this zip](/SampleWebApp.zip) \ No newline at end of file diff --git a/SampleWebApp.zip b/SampleWebApp.zip new file mode 100644 index 0000000..36e010c Binary files /dev/null and b/SampleWebApp.zip differ