mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 18:37:26 +08:00
* v2.1.0 [omit consensus and adjacent] - this commit will be amended with the full release after the file copy is complete * 2.1.0 main node rollup
18 lines
294 B
Go
18 lines
294 B
Go
// -*- go -*-
|
|
|
|
package main
|
|
|
|
// @Hex
|
|
// @LSB
|
|
// @Test 0 0 = 0x2c20776f726c6421
|
|
func main(a, b int32) []byte {
|
|
// 48656c6c6f 2c20776f726c6421
|
|
data := []byte("Hello, world!")
|
|
// data := []byte{72, 101, 108, 108, 111, 111}
|
|
return foo(data[5:])
|
|
}
|
|
|
|
func foo(data []byte) []byte {
|
|
return data
|
|
}
|