Login
Discover
Waves
Decks
Plus
Login
Signup
Topics
New
Trending
Hot
New
New
Trending
Hot
New
Payouts
Muted
Promoted
Global
Top communities
Create decentralized 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
solorzanot
Music
2026-04-02 22:20
Promoted
Sembrando Tradiciones: A los Estudiantes Que Mantienen Viva Nuestra Cultura / Sowing Traditions: To the Students Who Keep Our Culture Alive
Saludos a la gran comunidad Hive.blog, a todos los creadores de contenido y, especialmente, a la importante comunidad #Music. Hoy tengo el grato placer de compartir con ustedes un material que grabé con
$ 0.521
70
9
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
darth-azrael
retrocomputing
2026-04-03 00:08
Promoted
Byte (March 1984)
Byte was around for the birth of personal computing. It was still covering a wide variety of systems in 1984. The March 1984 issue includes:
$ 1.022
108
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