A Procedure that takes in same data and returns some data.
function add(x: int, y: int) -> int { return x + y; } print(add(10, 5));
Output:
15