8 lines
83 B
Go
8 lines
83 B
Go
package main
|
|
|
|
func main() {
|
|
x := 43
|
|
if x != 42 {
|
|
panic(42)
|
|
}
|
|
}
|