Bruno BELANYI
45eb3e860c
To align with neovim's usage, use `parameter` instead of `variable.parameter`.
9 lines
237 B
Plaintext
9 lines
237 B
Plaintext
primitive print(s: string)
|
|
/* ^ function */
|
|
/* ^ parameter */
|
|
|
|
function func(a: int) : int = (print("Hello World!"); a)
|
|
/* ^ function */
|
|
/* ^ parameter */
|
|
/* ^ function */
|