fixing references / snippets
cleanup "snippets" compilation state
This commit is contained in:
@ -33,12 +33,12 @@ basic.forever(() => {
|
||||
This program measures the temperature using Fahrenheit degrees.
|
||||
Fahrenheit is a way of measuring temperature that is commonly used in the United States.
|
||||
To make a Celsius temperature into a Fahrenheit one, multiply the Celsius temperature by
|
||||
1.8 and add 32.
|
||||
``18``, divide by ``10`` and add ``32``.
|
||||
|
||||
```blocks
|
||||
basic.forever(() => {
|
||||
let c = input.temperature()
|
||||
let f = (c * 1.8) + 32
|
||||
let f = (c * 18) / 10 + 32
|
||||
basic.showNumber(f)
|
||||
})
|
||||
```
|
||||
|
Reference in New Issue
Block a user