Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Comment thread
houghj16 marked this conversation as resolved.
float power = math.Power(5);

// Print results on screen
Expand Down