Login
Discover
Waves
Communities
Login
Signup
Topics
#learngo
Global
Trending
Hot
New
Top
#learngo
New
Top communities
Create your community
latest #learngo created topics on internet
technological
programming
2018-05-25 16:00
'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
2018-05-25 15:50
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
2018-05-22 16:45
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
$ 0.000
2
technological
programming
2018-05-22 16:10
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
$ 0.000
1
luchyl
Hive Collectors
2026-05-31 00:00
Promoted
Opening Memories.
Hi, collectors. Glad to be writing on this month's theme. Honestly, I didn't know that bottle openers were a thing. Like something one could actually collect. Lol. I guess anything and everything could
$ 2.454
674
17
technological
programming
2018-05-22 15:56
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"
$ 0.000
0
technological
programming
2018-05-21 18:35
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
$ 0.000
0
technological
programming
2018-05-21 17:37
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'
$ 0.000
0
technological
programming
2018-05-21 17:19
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
$ 0.000
0
an1info
Indiaunited
2026-06-07 09:35
Promoted
How to create a Windows 11 bootable pen drive on Linux
Creating a bootable USB drive is straightforward on Windows, with many reliable tools available for installing different operating systems. On Linux, however, the options are much more limited, and many
$ 1.045
156
3
technological
programming
2018-05-21 07:51
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,
$ 0.228
1
technological
programming
2018-05-20 15:25
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
$ 0.000
1
technological
programming
2018-05-20 10:32
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
$ 0.000
1
technological
programming
2018-05-19 13:25
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
$ 0.000
1