14 lines
397 B
Go
14 lines
397 B
Go
|
package main
|
||
|
|
||
|
var (
|
||
|
deathMessages = []string{
|
||
|
"You have done something foolish...died",
|
||
|
"Do not expect a darwin award any time soon..",
|
||
|
"Don't give up on dying, you are doing great!",
|
||
|
"One day you should try...living",
|
||
|
"Only those who lack common sense resemble you",
|
||
|
"Give youself a break, you only failed to stay alive afterall",
|
||
|
"God himself can't save you from stupidity",
|
||
|
}
|
||
|
)
|