Categories for Google Go

Looping with Golang’s Maps

January 16, 2016 1:53 am Published by

We’ve so far discussed how you can declare and initialize maps in Golang. In this blog post, we discuss how you can use loops to implement your Golang maps. We use loops in maps to initialize a block of several...

Read More

Looping with Golang’s Arrays and Slices

January 15, 2016 12:41 pm Published by

We’ve so far discussed how you can declare and initialize arrays and slices in Golang. In this blog post, we discuss how you can use loops to initialize your arrays and slices. Why do we need loops when initializing some...

Read More

A Guide to Golang’s Maps

January 14, 2016 12:02 pm Published by

In our previous blogs, we’ve discussed Golang’s data types, arrays and slices. In this tutorial, we present a one more in-built type—the maps. By the end of the class, you should have learnt how to use maps in your Golang...

Read More

How to Use Conditionals in Golang

January 12, 2016 8:00 am Published by

In this class, we’ll be covering how you can use conditionals in Golang. So, let’s dive in and find out how to use conditionals in Golang. You might be thinking, “What are conditionals?” Well, conditionals are expressions that result to...

Read More

Golang Programming Operators

January 11, 2016 7:34 am Published by

Operators are symbols that tell the compiler to perform specific operations that may be mathematical, relational or logical. The Golang programming language has a rich in in-built operators that can be grouped into: Arithmetic Operators, Relational Operators, Logical Operators, Bitwise...

Read More

How to Use Pointers in Golang

January 10, 2016 6:43 am Published by

In this class, we discuss how to use pointers in Golang. By the end of the class, you’ll have learnt how to define and use pointers in Golang. Let’s start the discussion by first defining pointers. A pointer is an...

Read More

More about Golang Functions—Defer

January 9, 2016 6:10 am Published by

In this class, we follow up our discussions on functions by looking at the special statement “defer” in Golang. Let’s start by discussing what the defer statement does in Golang programs. The defer statement is used to schedule a function...

Read More

An Overview of Golang Functions

January 7, 2016 9:40 am Published by

In this blog post, we discuss Golang Functions. By the end of the class, you’ll be expected to master how to use Golang functions. But first, let’s start by defining what functions are and their importance in programming. A function—also...

Read More