4 Definitions and Functions
When defining or locally binding a name, some predefined names must be avoided. The following names are disallowed for binding, since redefining or shadowing the names could easily create confusion: def, fun, block, let, letrec, if, cond, match, check, try, module, import, type, is_a, Int, Boolean, Void, String, Symbol, Listof, Arrayof, Mapof, Syntax, Boxof, cons, first, rest, values, box, unbox, set_box, Array, and MutableMap.
definition | ||
| ||
definition | ||
| ||
definition | ||
| ||
definition | ||
| ||
definition | ||
| ||
definition | ||
> x
- Int
1
> x2
- Int
2
def mutable count = 0
Any expression in the sequence before the last one must have type Void, and such an expression is useful only when it has a side effect (such as printing), since the result is ignored.
Names defined by definitions in body are visible only within the block body, and they shadow bindings of the same name outside of the block.
Forms like fun and match have body positions, and you can think of those positions as implicitly having a block around the body.
> def x = "outside"
> x
- String
"outside"
> block:
def x = "inside"
println("hello")
x
- String
hello
"inside"
> x
- String
"outside"
definition | ||||||||
| ||||||||
| ||||||||
expression | ||||||||
| ||||||||
| ||||||||
|
A function is called through the expression form fun_expr(arg_expr, ...), where fun_expr is typically an identifier defined with fun, but it can be any expression that produces a function. A function call of the form fun_expr(arg_expr, ...) is an implicit use of #%call.
> fib(10)
- Int
89
> addone #%call (0)
- Int
1
type | |
| |
type | |
|
The -> operator associates to the right, so a -> b -> c is the type of a function that takes a and returns a function of type b -> c.
> make_adder
- Int -> Int -> Int
#<function:make_adder>
> apply_adder
- (Int -> Int) -> Int
#<function:apply_adder>
See macro for the definition of let in terms of block and def.
> let x = 1:
x
- Int
3
match lst
| []: 0
| cons(n, lst): n + sum(lst)):
sum([1, 2, 3])
- Int
6
No useful result is produced by the assignment expression. That is, the type of the := expression is Void.
> def mutable x = 1
> x := 2
> x
2