go-playground/helloWorld/hello.go
2025-04-09 23:19:21 +02:00

15 lines
220 B
Go

package helloworld
func Greeting(mood int) string {
switch mood {
case 0:
return "Hello cruel world!"
case 1:
return "Hello crude world!"
case 2:
return "Hello cool world!"
default:
return "Aye mate!"
}
}