We can store decimal numbers in variables too. Decimal numbers are sometimes referred to as <dfn>floating point</dfn> numbers or <dfn>floats</dfn>.
<strong>Note</strong><br>Not all real numbers can accurately be represented in <dfn>floating point</dfn>. This can lead to rounding errors. <ahref="https://en.wikipedia.org/wiki/Floating_point#Accuracy_problems"target="_blank">Details Here</a>.
</section>
## Instructions
<sectionid='instructions'>
Create a variable <code>myDecimal</code> and give it a decimal value with a fractional part (e.g. <code>5.7</code>).
</section>
## Tests
<sectionid='tests'>
```yml
- text: <code>myDecimal</code> should be a number.