Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 02_Functions.md #220

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/01_introduction/02_Functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fun main() {
```

1. A simple function that takes a parameter of type `String` and returns `Unit` (i.e., no return value).
2. A function that takes a second [optional parameter with default value](https://kotlinlang.org/docs/reference/functions.html#default-arguments) `Info`. The return type is omitted, meaning that it's actually `Unit`.
2. A function that takes a second [optional parameter with default value](https://kotlinlang.org/docs/reference/functions.html#default) `Info`. The return type is omitted, meaning that it's actually `Unit`.
3. A function that returns an integer.
4. A single-expression function that returns an integer (inferred).
5. Calls the first function with the argument `Hello`.
Expand Down