update quality

This commit is contained in:
2026-02-11 02:12:03 +03:00
parent 091565f020
commit e4c3d7afb1
18 changed files with 1036 additions and 564 deletions

View File

@@ -58,4 +58,14 @@ public class Calculator
return new { Result = result };
}
public object Reset(string @operator, object[] args)
{
// Return default inputs (operator = "add", args = [0, 0])
return new
{
@operator = "add",
args = new decimal[] { 0, 0 }
};
}
}