Skip to content

Instantly share code, notes, and snippets.

@tebeka
Created March 9, 2022 08:14
Show Gist options
  • Save tebeka/cd76f0d470d06005166315e3f1a81845 to your computer and use it in GitHub Desktop.
Save tebeka/cd76f0d470d06005166315e3f1a81845 to your computer and use it in GitHub Desktop.
type FilePerm uint8
const (
Read FilePerm = 1 << iota
Write
Execute
)
func main() {
fmt.Println(Execute) // execute
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment