You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Exercises: Comprehension check |
|
## Exercise 1 |
|
To declare these functions in the REPL, you need to prepend them with **let**. |
|
|
|
`let half x = x / 2` |
|
|
|
`let square x = x * x` |
|
|
|
## Excercise 2 |
|
In the REPL: |
|
|
|
`let foo x = 3.14 * (x * x)` |
|
|
|
## Excercise 3 |
|
In the REPL: |
|
|
|
`let bar x = pi * (x * x)` |