Functions
Control Flow
Basic Language Features
Fundamentals
Write the definition of a function max that has three int parameters and returns the largest.
def largest(num1,num2,num3):
max(num1,num2,num3)
# TODO: Replace examples and use TDD development by writing your own tests
# These are some of the methods available:
# test.expect(boolean, [optional] message)
# test.assert_equals(actual, expected, [optional] message)
# test.assert_not_equals(actual, expected, [optional] message)
# You can use Test.describe and Test.it to write BDD style test groupings