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)