Difference between revisions of "GPU621/Go Kimchi"

From CDOT Wiki
Jump to: navigation, search
(What's GO Language?)
(What's GO Language?)
Line 20: Line 20:
 
=== What's GO Language? ===  
 
=== What's GO Language? ===  
 
----
 
----
Go Language is a open source programming language that is designed at Google by [https://en.wikipedia.org/wiki/Robert_Griesemer Robert Griesemer], [https://en.wikipedia.org/wiki/Ken_Thompson Ken Thompson], and [https://en.wikipedia.org/wiki/Rob_Pike Rob Pike]. [[File:Golang.png|400px|left]] <br>
+
[[File:Golang.png|400px|left]] Go Language is a open source programming language that is designed at Google by [https://en.wikipedia.org/wiki/Robert_Griesemer Robert Griesemer], [https://en.wikipedia.org/wiki/Ken_Thompson Ken Thompson], and [https://en.wikipedia.org/wiki/Rob_Pike Rob Pike]. <br>
 
Go lang is a '''Fast''' and '''Pretty''' language.
 
Go lang is a '''Fast''' and '''Pretty''' language.
 
Go language is a compiler language which makes its execution fast. Go is faster than Python & JavaScript. In some cases, Go may be faster than Java or as fast as Java. <br>
 
Go language is a compiler language which makes its execution fast. Go is faster than Python & JavaScript. In some cases, Go may be faster than Java or as fast as Java. <br>

Revision as of 20:26, 2 August 2021


GPU621/DPS921 | Participants | Groups and Projects | Resources | Glossary

Project Name

Compare C++/Go/Java

Group Members

Yuseok Won Minsu Kim

Project Description

This project will look at the performance difference between C++/Go/Java using a similar Parallel Algorithm. It will present how to do parallel program in each language and show the different syntax codes that's using the similar algorithm. We will gather the results of running the code and show the graphical result to clearly show to performance difference between the three languages. It will also briefly cover the history of each language and look at the fundamental difference between three languages to see what may have caused the performance difference.

Progress

What's GO Language?


Golang.png
Go Language is a open source programming language that is designed at Google by Robert Griesemer, Ken Thompson, and Rob Pike.

Go lang is a Fast and Pretty language. Go language is a compiler language which makes its execution fast. Go is faster than Python & JavaScript. In some cases, Go may be faster than Java or as fast as Java.
Go also has a relatively easy syntax which makes it easy to learn and fast to develop.
Usage of Go
GO is used by Google, Youtube, Google Download Server, Uber replaced Node.JS to Go, Twitch's trance-coding process Go & C++.

What's Java?