mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-24 03:47:25 +08:00
12 lines
189 B
Go
12 lines
189 B
Go
// -*- go -*-
|
|
|
|
package main
|
|
|
|
// 0x48656c6c6f2c20776f726c6421
|
|
|
|
// @Test 42 1 = 0x21646c726f77202c6f6c6c6548
|
|
func main(a []byte, b int) []byte {
|
|
ret := []byte("Hello, world!")
|
|
return ret
|
|
}
|