Created
March 9, 2022 08:14
-
-
Save tebeka/cd76f0d470d06005166315e3f1a81845 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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