summaryrefslogtreecommitdiff
path: root/test/const-function.mnml
blob: 5a82b68bfeef0b46d668bbcfa77fa52bd726fb11 (plain)
1
2
3
4
5
6
7
8
const main: function = (input: string or integer, default: integer = 1): void {
  const hello: string = input + " world!"
  const bye: string = "bye!"

  return hello + " " + bye
}

main(input = "hey", default = 2)