"Go" - Simple yet Powerful
Overview of a cool programming language of the new age

I am a student exploring my interests in various technologies and platforms.
Search for a command to run...
Overview of a cool programming language of the new age

I am a student exploring my interests in various technologies and platforms.
No comments yet. Be the first to comment.
Scalable Wireless Distributed Consensus for Autonomous Vehicles at Unsignalized Intersections

The Ultimate VLSI Roadmap is designed to help students and professionals gain clarity in choosing a role for their future careers.

A convolutional neural network (CNN) is a type of artificial neural network used primarily for image recognition and processing, due to its ability to

Natural language processing (NLP) is a branch of artificial intelligence that helps computers understand, interpret, and manipulate human language.

Introduction to Python

From the name of it, we can guess that it was developed by Google in 2007. Google was not happy with the existing programming languages and wanted to create one on its own. They created "Go" to increase their control over the code, improve the programming productivity, and increase the readability. They were inspired by the run-time efficiency of 'c', code reusability and readability of 'python' and high performance and networking capabilities of 'Java'.
Go is a very simplistic and fast open-source programming language developed by Robert Griesemer, Rob Pike, and Ken Thompson in google in 2007. As it is inspired by c, most of the syntax is identical but differs from it as Go has a garbage value collector, memory safety etc.
1.Simple - The major key reason for Go to be popular is that it has a very easy syntax, there is no need for semicolons, curly braces for control structures and parentheses for function. This helps the developers to read the code easily and find errors.
2.Fast - The support for concurrency makes Go 20 to 30 times faster than python. And because of its Garbage collector and use of pointer over references, it's very fast.
3.Portability and cross-platform usage - Go can be compiled for any architecture and operating system.
Many companies are using Go for a variety of products and features. Google uses it in most areas because they are the ones who developed it. Netflix uses it to process data efficiently in servers. Uber uses Go for the Geofence service. Dropbox is one of the major companies which uses Go to scale its systems efficiently.
package main
import "fmt"
func main()
{
// prints Welcome to the Quasar community
fmt.println("Welcome to the Quasar community")
}
Welcome to the Quasar community
1.The Package main contains the overall code. It is the starting point of the program.
2.The Import "fmt", the import command tells the compiler to include the files in the corresponding package.
3.The main function is the beginning of the program.
4.The fmt.Println() is a library function to print the given output on the screen.
Syntax
/single line comment
Syntax
/* single line comment */
Advantages:
Disadvantages