docs: document main

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Piotr Idzik
2023-01-31 21:45:44 +01:00
committed by GitHub
parent e556ebd848
commit b05ca3d342

View File

@@ -176,6 +176,10 @@ void levelOrder(node *root) {
}
}
/**
* @brief Main function
* @returns 0 on exit
*/
int main() {
// Testing AVL Tree
node *root = nullptr;