17 lines
303 B
Markdown
17 lines
303 B
Markdown
|
# Function calls
|
||
|
|
||
|
A function is called with parenthesis.
|
||
|
|
||
|
```misti
|
||
|
// No parameters: place opening and closing paren
|
||
|
debugState()
|
||
|
|
||
|
// 1 parameter
|
||
|
val result = fibonacci(20)
|
||
|
|
||
|
// 2 or more parameters: separate the parameters with commas
|
||
|
val remainder = substract(50, 30)
|
||
|
val total = add(60, -30, 90)
|
||
|
```
|
||
|
|