File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
exercises/08-Function-that-returns Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -8,23 +8,22 @@ It is very good practice that all functions return something, even if it is `Non
88
99With what your function returns, you can create algorithms that use multiple functions at the same time.
1010
11- For example, in this particular case we have two functions available:
11+ For example, in this particular case, we have two functions available:
1212
1313+ ` dollar_to_euro ` : that calculates the value in euros of a given value in dollars.
1414
1515+ ` euro_to_yen ` : calculates the value in yen of a given value in euros.
1616
17-
1817## 📝 Instructions:
1918
20191 . Using the two functions available, print on the console the value of ** 137** dollars in yen.
2120
22- ## 💡 Hint
21+ ## 💡 Hint:
2322
2423Working backwards:
2524
2625- Our expected value is in yen.
2726
2827- Our available function ` euro_to_yen ` will provide that.
2928
30- - To get to euro we will use the available function ` dollar_to_euro ` .
29+ - To get the euros, we will use the available function ` dollar_to_euro ` .
You can’t perform that action at this time.
0 commit comments