go

  • Gateway To Go Language Documentation and Resources

    Gateway To Go Language Documentation and Resources

    This article documents all Go Programming Language (GoLang) resources, tools, tutorials and documentation. Resource Link Go Tour Go Tour Go Language Specifications Golang Specs Go Documentation Go.Dev/Doc GoLang Wiki…

    neotam Avatar
  • Characters and Strings in Go Language

    Characters and Strings in Go Language

    Go Programming language has two data types rune and string that are used to define characters and strings in go respectively Characters in Go Characters are runes in go…

    neotam Avatar
  • Looping in Go Programming Language

    Looping in Go Programming Language

    Go language has only one looping construct, that is for. There are three forms of for loops in Go. For can be used with single condition much like while…

    neotam Avatar
  • How to write a program to find if given year is leap year in Go Language

    How to write a program to find if given year is leap year in Go Language

    A leap year is the year which divisible by 4. But all century(multiples of 100) years that are divisible 4 are not leap years, in such a case it…

    neotam Avatar