## Divide & Multiply
Writing basic functions continued.

We'll write two more basic functions, this time without any help.

+ write a function `divideOne` divides a number by 1
@test('02/01')
@action(open('page-02.js'))
@action(set(
```
// divideOne
function divideOne(x) {
  return ::>
}
```
))

+ write a function `mutiplyOne` that multiplies a number by 1
@test('02/02')
@action(insert(
```

// multiplyOne
function multiplyOne(x) {
  return ::>
}
```  
))
