diff --git a/docs/html/annotated.html b/docs/html/annotated.html
new file mode 100644
index 0000000..26c737c
--- /dev/null
+++ b/docs/html/annotated.html
@@ -0,0 +1,80 @@
+
+
+
+
+
Here are the classes, structs, unions and interfaces with brief descriptions:
+
+
+
+
+
diff --git a/docs/html/classes.html b/docs/html/classes.html
new file mode 100644
index 0000000..7adeae2
--- /dev/null
+++ b/docs/html/classes.html
@@ -0,0 +1,80 @@
+
+
+
+
+
+
This is the complete list of members for test.Calculator, including all inherited members.
+
+
+
+
+
diff --git a/docs/html/classtest_1_1Calculator.html b/docs/html/classtest_1_1Calculator.html
new file mode 100644
index 0000000..1ee6a77
--- /dev/null
+++ b/docs/html/classtest_1_1Calculator.html
@@ -0,0 +1,292 @@
+
+
+
+
+
+
+
A simple calculator class to perform basic arithmetic operations.
+
+
+
◆ __init__()
+
+
+
+
+
+ | def test.Calculator.__init__ |
+ ( |
+ |
+ self, |
+
+
+ |
+ |
+ |
+ value = 0 |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Initializes the calculator with a starting value.
+
+:param value: The starting value of the calculator (default is 0).
+
+
+
+
+
+
◆ add()
+
+
+
+
+
+ | def test.Calculator.add |
+ ( |
+ |
+ self, |
+
+
+ |
+ |
+ |
+ number |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Adds a number to the current value.
+
+:param number: The number to add.
+:return: The updated value after addition.
+
+
+
+
+
◆ clear()
+
+
+
+
+
+ | def test.Calculator.clear |
+ ( |
+ |
+ self | ) |
+ |
+
+
+
+
Resets the calculator to its initial value (0).
+
+:return: The reset value (0).
+
+
+
+
+
◆ divide()
+
+
+
+
+
+ | def test.Calculator.divide |
+ ( |
+ |
+ self, |
+
+
+ |
+ |
+ |
+ number |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Divides the current value by the given number.
+
+:param number: The number to divide by.
+:return: The updated value after division.
+:raises ZeroDivisionError: If the number is zero.
+
+
+
+
+
◆ multiply()
+
+
+
+
+
+ | def test.Calculator.multiply |
+ ( |
+ |
+ self, |
+
+
+ |
+ |
+ |
+ number |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Multiplies the current value by a given number.
+
+:param number: The number to multiply with.
+:return: The updated value after multiplication.
+
+
+
+
+
◆ subtract()
+
+
+
+
+
+ | def test.Calculator.subtract |
+ ( |
+ |
+ self, |
+
+
+ |
+ |
+ |
+ number |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Subtracts a number from the current value.
+
+:param number: The number to subtract.
+:return: The updated value after subtraction.
+
+
+
+
The documentation for this class was generated from the following file:
+
+
+
+
+
diff --git a/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html b/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html
new file mode 100644
index 0000000..fd79c6c
--- /dev/null
+++ b/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html
@@ -0,0 +1,78 @@
+
+
+
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+
+
+
+
+
diff --git a/docs/html/functions_func.html b/docs/html/functions_func.html
new file mode 100644
index 0000000..f5012f7
--- /dev/null
+++ b/docs/html/functions_func.html
@@ -0,0 +1,90 @@
+
+
+
+