ceremonyclient/bedlam/testsuite/lang/divi.qcl
Cassandra Heart e51992f3e8
OT
2025-03-23 21:11:16 -05:00

12 lines
163 B
Go

// -*- go -*-
package main
// @Test 43 4 = 10
// @Test -43 4 = -10
// @Test 43 -4 = -10
// @Test -43 -4 = 10
func main(a, b int64) int64 {
return a / b
}