Created
March 10, 2022 10:17
-
-
Save tebeka/09755207f9bdfd13f71639d3e0f301cd 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