Given a binary tree aBinaryTree, returns its left child. Raises an error if the tree does not have a left child.
aBinaryTree
the tree to consider
the left child if possible
Given a binary tree
aBinaryTree
, returns its left child. Raises an error if the tree does not have a left child.