Login
Discover
Waves
Communities
Write
Login
Signup
Topics
#
learngo
Explore topics
#learngo
Global
Trending
Hot
New
Payout
Muted
Promoted
#learngo
New
#learngo
Follow to get notified about new posts with this tag
Get #learngo by email
Follow
technological
programming
8y
'If' Statement In 'Go'(Learn 'Go' - Part 12)
The 'If' statement is used to check a certain condition within a function. We can create a simple program to see 'if' in action. package main import "fmt" func main(){ x := 1 for i <=
$ 0.000
3
1
technological
programming
8y
For Loop In 'Go'(Learn 'Go' - Part 11)
In Go, we use the 'For' statement to repeat a block of statements multiple times. Unlike other languages, Go has just one type of loop, i.e., 'for' and we can use it in a variety of ways. For Instance,
$ 0.000
0
technological
programming
8y
Multiple Variables In 'Go'(Learn 'Go' - Part10)
You can define multiple variables in Go very quickly. var ( a = 10 b = 20 c = 30 ) Previous Posts In The Series Introduction To 'Go' Programming Language(Learn 'Go' - Part 1) 25 Basic Keywords
technological
programming
8y
Constants In 'Go'(Learn 'Go' - Part 9)
Just like variables, constants also have specific storage locations but their value remains fixed. We use 'const' keyword to create a constant. Constants are useful for the common values you would like
tonyz
Photography Lovers
7d
Promoted
Beam of Light.
Under the bridge. Amsterdam, the Netherlands.
technological
programming
8y
Variables In 'Go'(Learn 'Go' - Part 8)
Variables allow you to build useful programs, you cannot do much with the basic types. They are specific storage locations with a name and a specific type. For instance, package main import "fmt"
technological
programming
8y
Numbers In 'Go'(Learn 'Go' - Part 7)
In Go, there are several types to represent numbers. For Integers, we have int8 int16 int32 int64 uint8 uint16 uint32 uint64 'uint' means unsigned integers and 8,16,32,64 represent how many bits each
technological
programming
8y
Booleans In 'Go'(Learn 'Go' - Part 6)
Another type is 'Booleans'. Boolean values are used to represent true and false or on and off. There are three logical operators used to represent the Boolean values, && for 'and' || for 'or'
technological
programming
8y
Strings In 'Go'(Learn 'Go' - Part 5)
There are many data types that you will be using while programming in Go like Strings, Numbers, Booleans and more. Let's begin with the "Strings". Strings is a sequence of characters that
tonyz
photography
12d
Promoted
Big day for Tesla.
Shot these pictures in may 2026 at Tesla Amsterdam. Today they will flood Austin, exciting times! "Tesla is holding its official Cybercab launch event in Austin today, September 3, 2026, at Gigafactory
technological
programming
8y
Create Your First Program In Go Language (Learn 'Go' - Part 4)
Now that you have set up the working environment on your system, let's create the first program in Go. Open up your workspace folder and create another folder within the 'src' folder. For Instance,
technological
programming
8y
How To Set The Go Programming Environment On Your System?(Learn 'Go' - Part 3)
The process to install 'Go' on your system is straightforward and easy. You will need the basic knowledge of the Terminal. Don't worry! The steps are easy to follow. Steps To Install 'Go' On A Windows
technological
programming
8y
25 Basic Keywords Of The Go Programming Language (Learn 'Go' - Part 2)
The 'Go' programming language is considered simple to learn as compared to other programming languages like C. C has more than 70 basic keywords, whereas 'Go' has 25 keywords. It has been designed to be
technological
programming
8y
Introduction to 'Go' Programming Language - Part 1(Learn 'Go')
If you want to know why you should learn the 'Go' programming language, you can read my post. Why Should You Learn The 'Go' Programming Language The 'Go' programming language is designed to be easily
Discover communities
Explore communities
Create your community