mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 18:37:26 +08:00
20 lines
329 B
Go
20 lines
329 B
Go
// -*- go -*-
|
|
|
|
package main
|
|
|
|
// @Hex
|
|
// @LSB
|
|
// @Test 0 0 = 0x2c20776f726c6421
|
|
func main(a, b int32) []byte {
|
|
// 48 65 6c 6c 6f | 2c 20 77 6f 72 6c 64 21
|
|
data := []byte{
|
|
0x48, 0x65, 0x6c, 0x6c, 0x6f,
|
|
0x2c, 0x20, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x21,
|
|
}
|
|
return foo(data[5:])
|
|
}
|
|
|
|
func foo(data []byte) []byte {
|
|
return data
|
|
}
|