mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 18:37:26 +08:00
12 lines
140 B
Go
12 lines
140 B
Go
// -*- go -*-
|
|
|
|
package main
|
|
|
|
var base uint32 = 42
|
|
|
|
// @Test 0 0 = 42
|
|
// @Test 1 2 = 45
|
|
func main(a, b uint32) uint {
|
|
return base + a + b
|
|
}
|