RosettaCodeData/Task/Assertions/Go/assertions.go

9 lines
83 B
Go

package main
func main() {
x := 43
if x != 42 {
panic(42)
}
}