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

13 lines
175 B
Go

// -*- go -*-
package main
// @Test 42 1 = 0
// @Test 42 4 = 2
// @Test -42 4 = 2
// @Test 42 -4 = 2
// @Test -42 -4 = 2
func main(a, b int64) int64 {
return a % b
}