Get the highest number from a list that includes both negative and positive values.
Implement def highest_number(nums): to return the largest integer in the non-empty list nums. The list may contain negative values, positive values, and zero. Aim for a single-pass solution without sorting.
def highest_number(nums):