Skip to content

Instantly share code, notes, and snippets.

@tebeka
Created March 10, 2022 10:17
Show Gist options
  • Select an option

  • Save tebeka/09755207f9bdfd13f71639d3e0f301cd to your computer and use it in GitHub Desktop.

Select an option

Save tebeka/09755207f9bdfd13f71639d3e0f301cd 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