Skip to content

Instantly share code, notes, and snippets.

@tebeka
Created March 9, 2022 08:12
Show Gist options
  • Select an option

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

Select an option

Save tebeka/cb7ebe5fcb9770ed4c1444134d689f1a 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