Files

20 lines
300 B
Go
Raw Permalink Normal View History

2025-02-14 12:42:07 +07:00
// run
2024-09-21 23:49:08 +10:00
// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2025-02-14 12:42:07 +07:00
package main
2024-09-21 23:49:08 +10:00
2025-02-14 12:42:07 +07:00
func main() {
cnt := 0
for i := 1; i <= 11; i++ {
if i-6 > 4 {
cnt++
}
}
if cnt != 1 {
panic("bad")
2024-09-21 23:49:08 +10:00
}
}