16 lines
223 B
Go
16 lines
223 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"gitstore.ru/tolikproh/policy/acl"
|
|
)
|
|
|
|
func main() {
|
|
a := acl.UniteBitsToInt(0, 1, 2, 3, 63)
|
|
fmt.Println(a)
|
|
fmt.Println(acl.ConvertToString(a))
|
|
b := fmt.Sprintf("%b", a)
|
|
fmt.Println(b)
|
|
}
|