github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/io1.gno (about) 1 package main 2 3 import ( 4 "encoding/base64" 5 "fmt" 6 ) 7 8 func main() { 9 var buf [4]byte 10 s := base64.RawStdEncoding.EncodeToString(buf[:]) 11 fmt.Println(s) 12 } 13 14 // Output: 15 // AAAAAA