6 Other Expression Forms
expression | |||
| |||
| |||
expression | |||
| |||
| |||
expression | |||
|
When the result does not match the expected result, then an error is printed, but evaluation continues.
> check:
1+2
~is 3
- Void
> check:
1/0
~throws "division by zero"
- Void
> check:
1+2
~is 4
- Void
check: failed
got: 3
expected: 4
expression | ||||
|
> try:
1+2
~catch:
0
- Int
3
> try:
1/0
~catch:
0
- Int
0
> try:
error(#'example, "oops")
~catch:
["was", "an", "error"]
- Listof(String)
["was", "an", "error"]
> let_cc k:
1 + k(2)
- Int
2
1 + k(2))
- Int
12
> begin:
bump() // first bump's result ignored
bump()
- Int
2
Tracing prints => for each function call, adding one additional = to the front of => for each nesting level. It prints <= before showing each result, adding one additional = to the end of <= for each nesting level. When a traced call has the same continuation as the previous traced call, the nesting depth is not increased, and no result is shown for the previous call (since it is the same as the new call’s result). When tracing lazy evaluation (see Lazy Mode), arguments and results may print as #<thunk>, indicating that an expression’s value has not been demanded, yet.
> trace tail_sum:
tail_sum([1, 2, 3], 0)
- Int
=> tail_sum([1, 2, 3], 0)
=> tail_sum([2, 3], 1)
=> tail_sum([3], 3)
=> tail_sum([], 6)
<= 6
6
> trace nontail_sum:
nontail_sum([1, 2, 3])
- Int
=> nontail_sum([1, 2, 3])
==> nontail_sum([2, 3])
===> nontail_sum([3])
====> nontail_sum([])
<==== 0
<=== 3
<== 5
<= 6
6
> trace tail_sum:
nontail_sum([1, 2, 3])
- Int
6
> ....
- ?_a
reached an incomplete expression
- ?_a
reached an incomplete expression
> ....:
maybe return []?
maybe call error?
- ?_a
reached an incomplete expression
The .... operator also can be used as an “unknown” type that is incompatible with any other type, including another use of .... as a type.
typecheck failed: .... vs. Int
> (1 + 2)
- Int
3
- Int
3
expression | |
|
> 1
- Int
1
> #%literal 1
- Int
1