* test: remove limit. * test: skip btln.go * test: adds tests on errors. * feat: add missing output results. * refactor: time's tests.
16 lines
174 B
Go
16 lines
174 B
Go
package main
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
var buf [4]byte
|
|
s := base64.RawStdEncoding.EncodeToString(buf[:])
|
|
fmt.Println(s)
|
|
}
|
|
|
|
// Output:
|
|
// AAAAAA
|