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

13 lines
182 B
Go

// -*- go -*-
package main
// @Test 42 1 = 0
// @Test 42 40 = 2
// @Test 42 41 = 1
// @Test 42 42 = 0
// @Test 42 100 = 42
func main(a, b uint64) uint64 {
return a % b
}