We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4317771 + a52df3c commit a237664Copy full SHA for a237664
_episodes/06-func.md
@@ -68,8 +68,14 @@ Inside the function,
68
we use a [return statement]({{ page.root }}/reference/#return-statement) to send a result back to whoever asked for it.
69
70
Let's try running our function.
71
-Calling our own function is no different from calling any other function:
72
+~~~
73
+fahr_to_kelvin(32)
74
75
+
76
+This command should call our function, using "32" as the input and return the function value.
77
78
+In fact, calling our own function is no different from calling any other function:
79
~~~
80
print('freezing point of water:', fahr_to_kelvin(32))
81
print('boiling point of water:', fahr_to_kelvin(212))
0 commit comments