A Procedure that takes in no data but returns some data.
provider getInt() -> int { return 10; } print(getInt());
Output:
10