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

  return hello + " " + bye
}