thp/doc-generator/markdown/en/docs/latest/basics/function-calls.md
2023-04-10 21:10:53 -05:00

434 B
Executable File

Function calls

A function is called with parenthesis.

// 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)
[previous]
href = "./simple-datatypes.html"
title = "Datatypes"

[next]
href = "./operators.html"
title = "Operators"