In this post, you will learn how to work with the for loop so that you can use that same knowledge and thus evolve. a cycle allows executing an instruction or a set of instructions several times; there are three types of a for cycle...
In this post, you will learn how to work with switch so that you can use that same knowledge and thus evolve. the switch is another way of working with decisions and it can only check an equality relationship, that is, it cannot use comparison...
In this post, you will learn how to work with comparison operators so that you can use that same knowledge and thus evolve. == Equal != Different > Greater < Smaller >= Greater and equal <= Smaller and equal and And or Or package main...
In this post, you will learn how to work with decisions (if, else if and else) so that you can use that same knowledge and thus evolve. package main import "fmt" /* (if - if) condition is true { the code inside the if is...
In this post, you will learn how to work with arrays so that you can use that same knowledge and thus evolve. an array (vector) has a fixed size and is used to store a set of data in a sequential way; it is more...
In this post, you will learn how to work with the user input (bufio) so that you can use that same knowledge and thus evolve. the bufio library in conjunction with the function NewReader() and the function ReadString() have as main objective “extract” information given...