title: Start
---
// Function tests
// "add_three_operands" is a function that adds three operands together
<<call assert(add_three_operands(1, 2, 4*1) == 7)>>
// last_value is a function that returns the last parameter
<<call assert(last_value(1,2,3) == 3)>>
// function calls as parameters
<<call assert(last_value(1, 2, last_value(4,2,3)) == 3)>>
===