Functions, procedures, and methods
Adama has two forms of colloquial functions.
Functions in Adama are pure in that they have no side effects and also are context-free.
function square(int x) -> int {
return x * x;
}
int x;
procedure square_of_x() -> int {
return x * x;
}