mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-24 11:57:25 +08:00
10 lines
140 B
Go
10 lines
140 B
Go
// -*- go -*-
|
|
|
|
package main
|
|
|
|
// @Test 0x40414243 1 = 0x40414243
|
|
func main(a []byte, b int) []byte {
|
|
str := string(a)
|
|
return []byte(str)
|
|
}
|