<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[RSS Feed]]></title><description><![CDATA[RSS Feed]]></description><link>http://direct.ecency.com</link><image><url>http://direct.ecency.com/logo512.png</url><title>RSS Feed</title><link>http://direct.ecency.com</link></image><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Apr 2026 12:30:02 GMT</lastBuildDate><atom:link href="http://direct.ecency.com/created/learngo/rss.xml" rel="self" type="application/rss+xml"/><item><title><![CDATA['If' Statement In 'Go'(Learn 'Go' - Part 12)]]></title><description><![CDATA[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 <=]]></description><link>http://direct.ecency.com/programming/@technological/if-statement-in-go-learn-go-part-12</link><guid isPermaLink="true">http://direct.ecency.com/programming/@technological/if-statement-in-go-learn-go-part-12</guid><category><![CDATA[programming]]></category><dc:creator><![CDATA[technological]]></dc:creator><pubDate>Fri, 25 May 2018 16:00:15 GMT</pubDate></item><item><title><![CDATA[For Loop In 'Go'(Learn 'Go' - Part 11)]]></title><description><![CDATA[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,]]></description><link>http://direct.ecency.com/programming/@technological/for-loop-in-go-learn-go-part-11</link><guid isPermaLink="true">http://direct.ecency.com/programming/@technological/for-loop-in-go-learn-go-part-11</guid><category><![CDATA[programming]]></category><dc:creator><![CDATA[technological]]></dc:creator><pubDate>Fri, 25 May 2018 15:50:15 GMT</pubDate></item><item><title><![CDATA[Multiple Variables In 'Go'(Learn 'Go' - Part10)]]></title><description><![CDATA[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]]></description><link>http://direct.ecency.com/programming/@technological/multiple-variables-in-go-learn-go-part10</link><guid isPermaLink="true">http://direct.ecency.com/programming/@technological/multiple-variables-in-go-learn-go-part10</guid><category><![CDATA[programming]]></category><dc:creator><![CDATA[technological]]></dc:creator><pubDate>Tue, 22 May 2018 16:45:45 GMT</pubDate></item><item><title><![CDATA[Constants In 'Go'(Learn 'Go' - Part 9)]]></title><description><![CDATA[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]]></description><link>http://direct.ecency.com/programming/@technological/constants-in-go-learn-go-part-9</link><guid isPermaLink="true">http://direct.ecency.com/programming/@technological/constants-in-go-learn-go-part-9</guid><category><![CDATA[programming]]></category><dc:creator><![CDATA[technological]]></dc:creator><pubDate>Tue, 22 May 2018 16:10:18 GMT</pubDate></item><item><title><![CDATA[Variables In 'Go'(Learn 'Go' - Part 8)]]></title><description><![CDATA[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"]]></description><link>http://direct.ecency.com/programming/@technological/variables-in-go-learn-go-part-8</link><guid isPermaLink="true">http://direct.ecency.com/programming/@technological/variables-in-go-learn-go-part-8</guid><category><![CDATA[programming]]></category><dc:creator><![CDATA[technological]]></dc:creator><pubDate>Tue, 22 May 2018 15:56:33 GMT</pubDate></item><item><title><![CDATA[Numbers In 'Go'(Learn 'Go' - Part 7)]]></title><description><![CDATA[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]]></description><link>http://direct.ecency.com/programming/@technological/numbers-in-go-learn-go-part-7</link><guid isPermaLink="true">http://direct.ecency.com/programming/@technological/numbers-in-go-learn-go-part-7</guid><category><![CDATA[programming]]></category><dc:creator><![CDATA[technological]]></dc:creator><pubDate>Mon, 21 May 2018 18:35:42 GMT</pubDate></item><item><title><![CDATA[Booleans In 'Go'(Learn 'Go' - Part 6)]]></title><description><![CDATA[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']]></description><link>http://direct.ecency.com/programming/@technological/booleans-in-go-learn-go-part-6</link><guid isPermaLink="true">http://direct.ecency.com/programming/@technological/booleans-in-go-learn-go-part-6</guid><category><![CDATA[programming]]></category><dc:creator><![CDATA[technological]]></dc:creator><pubDate>Mon, 21 May 2018 17:37:48 GMT</pubDate></item><item><title><![CDATA[Strings In 'Go'(Learn 'Go' - Part 5)]]></title><description><![CDATA[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]]></description><link>http://direct.ecency.com/programming/@technological/strings-in-go-learn-go-part-5</link><guid isPermaLink="true">http://direct.ecency.com/programming/@technological/strings-in-go-learn-go-part-5</guid><category><![CDATA[programming]]></category><dc:creator><![CDATA[technological]]></dc:creator><pubDate>Mon, 21 May 2018 17:19:24 GMT</pubDate></item><item><title><![CDATA[Create Your First Program In Go Language (Learn 'Go' - Part 4)]]></title><description><![CDATA[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,]]></description><link>http://direct.ecency.com/programming/@technological/create-your-first-program-in-go-language-learn-go-part-4</link><guid isPermaLink="true">http://direct.ecency.com/programming/@technological/create-your-first-program-in-go-language-learn-go-part-4</guid><category><![CDATA[programming]]></category><dc:creator><![CDATA[technological]]></dc:creator><pubDate>Mon, 21 May 2018 07:51:42 GMT</pubDate></item><item><title><![CDATA[How To Set The Go Programming Environment On Your System?(Learn 'Go' - Part 3)]]></title><description><![CDATA[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]]></description><link>http://direct.ecency.com/programming/@technological/how-to-set-the-go-programming-environment-on-your-system</link><guid isPermaLink="true">http://direct.ecency.com/programming/@technological/how-to-set-the-go-programming-environment-on-your-system</guid><category><![CDATA[programming]]></category><dc:creator><![CDATA[technological]]></dc:creator><pubDate>Sun, 20 May 2018 15:25:39 GMT</pubDate><enclosure url="https://images.ecency.com/p/C3TZR1g81UNchGPKLQuxAL7oEwDJ42cT977qXjChSiSxhqh85KX75pZGCQMq3dmdTuwd6oR5cVdRA43W5ZiXC2wfx7MLDJ7ZpAdKoCb4MuXkAxD6n1pBY8N?format=match&amp;mode=fit" length="0" type="false"/></item><item><title><![CDATA[25 Basic Keywords Of The Go Programming Language (Learn 'Go' - Part 2)]]></title><description><![CDATA[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]]></description><link>http://direct.ecency.com/programming/@technological/25-basic-keywords-of-the-go-programming-language-part-2-learn-go</link><guid isPermaLink="true">http://direct.ecency.com/programming/@technological/25-basic-keywords-of-the-go-programming-language-part-2-learn-go</guid><category><![CDATA[programming]]></category><dc:creator><![CDATA[technological]]></dc:creator><pubDate>Sun, 20 May 2018 10:32:57 GMT</pubDate></item><item><title><![CDATA[Introduction to 'Go' Programming Language - Part 1(Learn 'Go')]]></title><description><![CDATA[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]]></description><link>http://direct.ecency.com/programming/@technological/introduction-to-go-programming-language-part-1-learn-go</link><guid isPermaLink="true">http://direct.ecency.com/programming/@technological/introduction-to-go-programming-language-part-1-learn-go</guid><category><![CDATA[programming]]></category><dc:creator><![CDATA[technological]]></dc:creator><pubDate>Sat, 19 May 2018 13:25:48 GMT</pubDate></item></channel></rss>