thp/doc-generator/markdown/en/docs/latest/basics/function-calls.md

17 lines
303 B
Markdown
Raw Normal View History

# 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)
```