Go comments
- 4th February, 2019 /
- Prwatech
Single line comments Single-line comments is start with two forward slashes ( // ). Ex: // this is a single-line...
Read MoreSingle line comments Single-line comments is start with two forward slashes ( // ). Ex: // this is a single-line...
Read MoreGo has three output functions: Print() Println() Printf() 1) Print(): function print its arguments with the default format. ...
Read MoreA Variable in which a value cannot be changed. The ‘const’ keyword declares the variable as “constant”. That means it...
Read MoreTypes of variable Int Float32 String Bool In Go language variables are defined in two different ways: Using var keyword...
Read MoreGo Language is a cross-platform, open-source programming language used for general purposes. Go is fast, statically typed, compiled language that...
Read More