tree-sitter-tiger/test/highlight/functions.tig

9 lines
237 B
Plaintext
Raw Normal View History

2022-06-03 19:59:56 +02:00
primitive print(s: string)
/* ^ function */
/* ^ parameter */
2022-06-03 19:59:56 +02:00
function func(a: int) : int = (print("Hello World!"); a)
/* ^ function */
/* ^ parameter */
2022-06-03 19:59:56 +02:00
/* ^ function */