From 1cbfbf26b0035a38ee1e0c3a3b23f1e4717f97b1 Mon Sep 17 00:00:00 2001 From: Jessie Houghton Date: Wed, 30 Nov 2022 08:46:26 -0800 Subject: [PATCH] Set up sample --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index c099d8a..6586bab 100644 --- a/Program.cs +++ b/Program.cs @@ -13,7 +13,7 @@ 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); // Print results on screen