Created
June 15, 2019 07:54
-
-
Save gophersumit/25f2a8ece4c46b7d0ae83891ca76bb6b to your computer and use it in GitHub Desktop.
Revisions
-
gophersumit created this gist
Jun 15, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ package main import "fmt" func main() { x := 0 x++ //valid operation fmt.Println(x++) // invalid operation x++ is not an expression ++x // invalid operation , prefix increment does not exist in go }