fix(curriculum): Update instructions Learn String Manipulation by Building a Cypher Step 3 (#54267)

This commit is contained in:
Re1nGer
2024-04-01 20:19:06 +03:00
committed by GitHub
parent f0ebd30f5c
commit 3ec7a2f204

View File

@@ -9,7 +9,7 @@ dashedName: step-3
You can use the built-in function `print()` to print the output of your code on the terminal.
Functions are reusable code blocks that you can call (run) when you need them. To call (or invoke) a function, you just need to write a pair of parentheses next to its name. You will learn more about functions very soon.
Functions are reusable code blocks that you can call, or invoke, to run their code when you need them. To call a function, you just need to write a pair of parentheses next to its name. You will learn more about functions very soon.
For now, go to a new line and add an empty call to the `print()` function. You should not see any output yet.