mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-23 11:27:25 +08:00
14 lines
245 B
Go
14 lines
245 B
Go
// -*- go -*-
|
|
|
|
package main
|
|
|
|
// @Test 42 1 = 0x21646c726f77202c6f6c6c6548
|
|
func main(a []byte, b int) string {
|
|
val := []byte{
|
|
0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x2c, 0x20, 0x77,
|
|
0x6f, 0x72, 0x6c, 0x64, 0x21,
|
|
}
|
|
ret := string(val)
|
|
return ret
|
|
}
|