blob: 9630dd8eeea63ef1bdb981b28f7dfd506c2ba123 (
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", 2)
|