vote up 116 vote down star
81

I've just been told about a new programming language, Go, developed at Google by such notables as Ken Thompson and Rob Pike. Does anyone have any experience with it so far? What are your thoughts about how viable small- and large-scale applications could be developed with it?

Relevant links (thanks to Lance Roberts; feel free to update these as necessary):

flag
231  
countdown to first job asking for 3years experience in this .... – Martin Beckett Nov 11 at 2:06
9  
hehe, I love the use of Kanji in the Hello "sekai" example! – hasen j Nov 11 at 2:07
38  
Please do not close this. – dehmann Nov 11 at 5:13
24  
firstly, this is a community wiki sort of question. secondly, I think the name of the language will prove to be a pain: try googling "go this" or "go that". See where I am coming from? It's like naming a language "the" or "a"... – MasterPeter Nov 11 at 11:09
28  
Hard to say. New languages come and GO. – Developer Art Nov 11 at 15:07
show 24 more comments

58 Answers

1 2
vote up 3 vote down

It compiles really fast! See this short youtube video.

link|flag
show 1 more comment
vote up 3 vote down

There some interesting stuff such as the goroutine stuff and the "static duck typing" (which I'm actually quite curious about, I have to check that video). But, please, no generics, exceptions, method overloading or operator overloading? The common standard library packages which look like bare wrappers above the c stdlib? Bah! I'm not impressed.

link|flag
show 1 more comment
vote up 3 vote down

I think Go will be a great language if it can survive its obscurity phase. However, I don't see it as a replacement for c++. It does several things right, concurrency is big win, and procedural syntax.

However, one of the stated goals is replace c++, and be a system programming language. I don't think it meets those goals well.

Garbage collection is generally a sign of an application language. In don't see how a language can claim it's a system language and yet require a garbage collector.

Duck typing is giving python headaches. C++ templates are having a simlar issue they are trying to solve with concepts. There needs to be a way to explicitly say what interface a type needs to fulfill. I'm not advocating Java/C# style interfaces, but they need to solve that sooner than later.

Also as a c++ programmer, it can't move to a new language that doesn't offer templates. Java/C# generics are ok but I prefer c++ style more powerful templates.

link|flag
8  
"Garbage collection is generally a sign of an application language. In don't see how a language can claim it's a system language and yet require a garbage collector." Traditionally. And I once thought that commercial consumer apps would always be written in assembly language. – Nosredna Nov 11 at 17:23
1  
Telling someone who sells an operating system written in a garbage collected systems language that one cannot write an operating system in a garbage collected systems language, is kind of strange, don't you think? – Jörg W Mittag Nov 12 at 3:16
vote up 3 vote down

Jeff Bone's awesome Go rant. A great read.

http://www.xent.com/pipermail/fork/Week-of-Mon-20091109/054578.html

It's merely the latest of a series of languages from these same people (former god-like heroes to me) --- most recently Limbo, each successive one of which implements the same ideas in barely, idiosyncratically, every-so-slightly different ways.

And so for 20 years now these folks --- the shining lights, in many ways, of "practical" programming language, operating systems, and general systems research --- have continued to fail to "get" the fundamental practical needs of everyday programmers working in The Real World. "Go" is just another language written first for the compiler and only secondarily for the programmer --- and stuck in a 70s mindset* about the relationship of that programmer to the (digital) world within which they live and work!

link|flag
2  
He didn't seem to have a single coherent thing to say about Go. Just noise. – Subbuteo Nov 15 at 17:22
show 1 more comment
vote up 3 vote down

I like the minimalistic approach. It seems like they have identified a number of core crucial issues and then created a language that deals with just those while holding back syntactic sugar.

link|flag
vote up 3 vote down

No Generics. So you see things like this in http://golang.org/pkg/sort/

func SortFloats(a []float)

SortFloats sorts an array of floats in increasing order.

func SortInts(a []int)

SortInts sorts an array of ints in increasing order.

func SortStrings(a []string)

SortStrings sorts an array of strings in increasing order

link|flag
show 2 more comments
vote up 2 vote down

This language, as Rob says in the google tech talk is meant as a systems language. Realistically the number of true systems programmers in the dev ecosystem is probably less than 5% of the whole. Dont get me wrong, I LOVE the fast compile time etc but what is needed is a language that is simple, that reduces the complexity of the development process. I dont know that there is a silver bullet. I think Ted Neward hit the nail on the head in a discussion about Agile - "We are in desperate need of simplicity in this industry. Whoever gets that, and gets it right, defines the "Next Big Thing"." I think that in that context GO is yet another language and not the next big thing we are looking for.

http://blogs.tedneward.com/2009/10/12/quotAgile+Is+Treating+The+Symptoms+Not+The+Diseasequot.aspx

link|flag
show 1 more comment
vote up 2 vote down

Reading "Go's type system has no hierarchy, so no time is spent defining the relationships between types" (FAQ) sounds scary to me. Whether I go to statically typed C# or dynamically typed Ruby, I can have my classes and my inheritance and my interfaces/mixins. That's how I think, and I don't know how I'd do creating a large-scale application with no inheritance.

The lack of generic types and exceptions is also odd to me, and feels like a step backward (language design FAQ).

link|flag
show 2 more comments
vote up 2 vote down

I like the 'sort of duck typing', reminds me of an answer I gave for what I'd like in C# 4.0 (http://stackoverflow.com/questions/138367/most-wanted-feature-for-c-4-0/253441#253441)

hey ho. Oh and I was interested until, "no windows". I've seen references indicating it is possible, but I've got other things that need my time.

link|flag
vote up 2 vote down

Lack of exceptions because of multiple return values is a mistake for me.

Interface system is good.

Pointers are bad, but necessary for a system language.

Finally array checked arrays in o.s. language. FFS people.

Agnostic about how the garbage collection can scale with parallelism. Java can get 5% in code that is well written but java has decades of JIT experience.

No JIT -> probably good, but precludes some optimizations probably including the very useful escape-analysis.

Lack of parametric types is huge mistake, capable of sinking evolution of the language to the application domain.

Syntax has a good idea (names first), but lousy execution sometimes.

Inheritance... I like polymorphism, i hate inheritance. So the decision to separate the interfaces from it is HEVAN.

Overloading is a huge source of bugs both in programs and in compilers. Good riddance.

Map embedded type. Sucks if no alternative is possible to declare. And without generic types it will not. Parametric Types, for me but not for you bahhh!

link|flag
vote up 2 vote down

I have played around with Go for two days now. Its syntax is a bit weird and needs some time to get used to. I always want to put parentheses around my if and for statements and leaving out the semicolon feels just wrong. But after a short adaptation phase I already get some lines of code down that just work the way I've imagined it.

My main criticism so far is about the tools provided. The compiler (6g) has no options like gcc or most other compilers I know do. There's no debug or release mode, no speed/size optimization and even the strip symbols option in the linker (6l) seems to break the executable and is thus unusable. Ok, I can live with that. It's not like I aim for best performance or smallest executable. Having a fast compiler is more important.

I love D partly because it has unittesting and ddoc as integral part of the language. So I was excited at first when I heard that Go has these things as well. But so far I can't get either of them to work, and that's mainly because they are NOT part of the language.

godoc is a program, that creates a (HTML) documentation from all the packages that come with Go. But it's nearly impossible to get it to work if you have your own program, that doesn't reside inside the GOROOT subdirectories.

gotest is actually only a batch script that uses the Makefile(s) to compile the tests and run all methods that match a certain pattern. Yeah...Makefiles. I hate those. I don't use them. And it's not possible to use gotest without them. So my first little project is a build tool that makes Makefiles obsolete. From there to gotest2 shouldn't be hard.... ;)

Some more thoughts:

  • I don't know why the language has 'goto' if they don't include other things with the explanation that it would just lead to more bugs...
  • No dynamic arrays (and no simple array concatenation). They have containers in the library, but that doesn't feel the same.
  • goroutines, they work great...adding 100k elements to a vector results in a few thousand casualties (overwritten elements) but no crash. I can already see the bugs this will create, but I still think it's a great feature.
  • Channels. Seem to make writing any type of server a lot easier.
  • Source code doesn't look as clean as Java or D.
  • I'm missing some things in the documentation. The general usage of a certain package for example. The _test.go files for that package are often more helpful.
  • writing := where you should have written = can easily lead to bugs that are hard to spot (depending on font, font-size and tiredness).
  • I don't miss assertions or exceptions, yet. try-catch blocks look better than a second return value and an if block, but it's doing the same. And I can probably write an assertion function in 5 minutes that crashes my program if false.
  • I don't use generics/templates in any language if I can avoid it. I just don't like them. And I most certainly will not miss them. But others may. They seem to have a huge fan-base out there.
link|flag
vote up 1 vote down

its quite similar to C++, which made me wanna check it out, I think the language is carefully planned, but I still think its too early to be used. Might wanna wait until it gets to 1.5 before I decide whether to study it or not.

link|flag
vote up 1 vote down

The initialization :

s:=0;

It would be better if "=" is used instead of ":=" to represent an initializing declaration.

I liked the Minimization of use of parenthesis in "for" and "if" statement

 for i := 0; i < 10; i++ {

  if s==0 {   }
}
link|flag
3  
I like having a separate operator, since it avoids the problem of accidentally creating a new variable because of a typo. It might take some getting used to though. – Matthew Crumley Nov 11 at 17:48
vote up 1 vote down

I think this says it all:

say good-bye to stack overflow(s)

link|flag
show 2 more comments
vote up 1 vote down
  • The only definitive improvement I see is the interface and type systems being untangled.
  • The concurrency model looks like it will cause profound performance issues related to data access.
  • Pretty much everything but the interface system is doable in C++ with the appropriate libraries/functions.
  • Type system is probably less expressive than C++, especially the lack of overloading.
  • They are correct in OO systems discussions having a focus on object modelling instead of solution finding.
  • Wait, another replacement for C++ with garbage collection?

The typing approach has a certain value, I suspect, and would be interesting to explore at least.

I would conclude - here and now, in my opinion - I don't see a serious future for this language outside of a webserver market having to support many many lightweight threads. I may be quite wrong, of course.

Thoughts based off of: http://golang.org/doc/effective%5Fgo.html , http://golang.org/doc/go%5Ffor%5Fcpp%5Fprogrammers.html , http://golang.org/doc/go%5Flang%5Ffaq.html .

link|flag
vote up 1 vote down

What can it really do for me (that I care about) that some other language I already know can't already do?

Until Google (or someone) comes up with a language that I can do something really cool in one line like...

Computer.MakeMeASandwich();

... I don't think I'll consider it to be anything else but yet another language.

I mean, even if it could do that, without Generics I can't imagine how it's going to be more efficient to code anything. I'll have to have a separate GetBeer method to get me a Great Lakes IPA or a PBR. Or I'll have to return generic beer and cast it as something else. And who wants to drink generic beer?

link|flag
3  
I've already designed it: public class Computer{ public void MakeMeASandwich() { // Todo: implement this } } – Neil N Nov 11 at 18:56
1  
just needs a little tweaking and it will be done, thats all – Neil N Nov 11 at 18:57
1  
public class Computer{ public void MakeMeASandwich() { throw new Exception("Please sudo."); } } – luiscubal Nov 11 at 22:05
1  
@Paul Nathan: But what if I don't want a sub? Can I do: perl -e "hoagie MakeMeASandwich { ... }"? – Dennis Williamson Nov 12 at 5:42
show 2 more comments
vote up 1 vote down

Yet another language with a built-in algorithm. Great for short examples and nothing but pain for tasks that don't exactly fit into provided system of threading with channels.

link|flag
vote up 1 vote down

I would be interested to see when it will have IDE support and will be available for windows also.

link|flag
show 1 more comment
vote up 1 vote down

Well I think it's a neat looking language and the concurrency bits are extremely nifty. Also the removal of millions of paren's are great too(I'm programming in C#! Not Lisp! why must I have 3 different casts with 8 different sets of parens!?)

That being said. It's just another language. There are not any points yet that make it viable to compete with C/C++. The language is decently better. Decently better will not cover the expenses of retraining and all that though.

I do like that this is a lower level language(runs on the actual machine) yet has garbage collection.

I think it would be neat to test just how good it is at handling low level things by writing a kernel in it. (course parts will be bootstrapped with C, but still)

link|flag
show 2 more comments
vote up 1 vote down

Seeing := as a shortcut to declare and assign a value to variables took me back to some of the first programming experiences I had, since they were in Pascal. :o)

link|flag
vote up 0 vote down

What would be good is a new native code compiled language that is not C / C++ / D / Pascalish.

Especially for embedded systems.

link|flag
show 1 more comment
vote up 0 vote down

Being Google I would have expected that that choose a name that's easily googleable. Really, is it that hard to find a unique name that actually lets people Google for resources about the language?

link|flag
show 2 more comments
vote up 0 vote down

function for finding factorial

func Factorial(n int) (fact int) {
  if n == 0 {  fact = 1;  }
  else {  fact = n * Factorial(n - 1);   }
  return;
}
link|flag
vote up 0 vote down

I discovered this language today while searching Google for "safe compiled language", in the hopes of finding a crossbreed of C++ and Python. Three of the first ten results pointed to Go. I think this says something (unless the search is rigged :)

link|flag
show 1 more comment
vote up 0 vote down

The language is kind of what I would expect as Rob Pike's next language. Rob's done a great body of work, and this is a good logical next step. But what has me green with envy is the lightning-fast compiler. I wish I could compile C, Haskell, and ML one-tenth that fast! Luckily I write a lot of code in Lua which also compiles blindingly fast (albeit to bytecode).

link|flag
vote up 0 vote down

I don't understand why compiling time can be so important for Google. Someone can explain, please?

The iota keyword seems to me really weird. It's a sort of automatic-pseudo-variabile to be used in const, in order to emulate enums.

I think that enums are simpler and cleaner than the iota sintax.

I would prefer, btw, a more expressive metalanguage rather than this strange thing. Or better, a reflection structure, that let use the language itself as its own metalanguage. I understand that reflection is expensive, it requires, I think, more steps to compile, and bigger structures (meta structures are required as well). I don't think that a preprocessor could be considered as an innovative idea.

link|flag
vote up 0 vote down

yet another programming language, this time by google!! Actually there is already a language with the same name, so it is slightly confusing having more than one language with the same name.

http://www.geek.com/articles/news/google-didnt-google-go-before-naming-their-programming-language-20091113/

link|flag
vote up -1 vote down

Without going into a rant, i think i will never use it.

link|flag
1  
Tell us why. Give us information, not bare opinions. – reinierpost Nov 27 at 10:13
show 1 more comment
1 2

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.