Definition
A definition is a linking of the name to the value or to the function body.
Examples
Linking the name to the value.
let x = 5 + 5
Linking the name to the function body.
func f(x: Int) = {
x + 5
}
A definition is a linking of the name to the value or to the function body.
Linking the name to the value.
let x = 5 + 5
Linking the name to the function body.
func f(x: Int) = {
x + 5
}