Tagged Questions

Go is a general-purpose programming language designed by Google.

learn more… | top users | synonyms (2)

77
votes
19answers
4k views

Is assert evil?

The Go language creators write: Go doesn't provide assertions. They are undeniably convenient, but our experience has been that programmers use them as a crutch to avoid thinking about proper ...
45
votes
11answers
16k views

Can Go compiler be installed on Windows?

I've been looking on golang.org for a Windows compiler, but I can't seem to find it. I can only see Linux and OS X compilers. Does anyone know if Go programming can be done on Windows, or is it ...
44
votes
26answers
6k views

Go examples and idioms [closed]

There's not a lot of Go code to learn the language from, and I'm sure I'm not the only one experimenting with it. So, if you found out something interesting about the language, please post an example ...
41
votes
12answers
7k views

Is there an IDE for Go?

I know that Go is new and experimental, so I don't think that there already is one. But does anyone know one being worked on? I know that syntax highlighting is available for emacs, vim and xcode. But ...
34
votes
2answers
2k views

D versus Go comparison

It would be interesting to contrast these two new languages by several aspects: What are their design influences? Where do they intersect in their goals / where do they rival? Where are they ...
28
votes
11answers
2k views

Common programming mistakes for Go developers to avoid [closed]

In the spirit of Common programming mistakes for Java developers to avoid? Common programming mistakes for JavaScript developers to avoid? Common programming mistakes for .NET developers to avoid? ...
26
votes
3answers
4k views

Why is go language so slow?

As we can see from The Computer Language Benchmarks Game: go is on average 10x slower than C go is 3x slower than Java !? How can this be, bearing in mind that go compiler produces native code ...
25
votes
10answers
2k views

Concurrency: how does shared memory vs message passing handle large data structures?

In looking at Go and Erlang's approach to concurrency, I noticed that they both rely on message passing. This approach obviously alleviates the need for complex locks because there is no shared ...
24
votes
7answers
5k views

GO programming language book or tutorial

Is there any good and big pdf tutorial or book for GO programming language ?
24
votes
6answers
6k views

What kind of solutions is Golang (Google Go) designed for?

Seems like Go is designed as a replacement for problems you previously would have solved with C++. Is this an accurate statement? What kind of solutions is Golang (Google Go) designed for?
23
votes
9answers
1k views

Why does Go compile quickly?

I've Googled and poked around the Go website, but I can't seem to find an explanation for Go's extraordinary build times. Are they products of the language features (or lack thereof), a highly ...
23
votes
3answers
4k views

Emacs lisp mode for Go?

Is there a suitable Emacs lisp mode for Go? C mode doesn't work without semicolons. The best I have found is the JavaScript mode by Karl Landstrom, since JavaScript also doesn't require semicolons.
22
votes
7answers
2k views

Who is using the Go programming language?

Who is using Go? Is it being used commercially or academically and if so, where?
20
votes
1answer
627 views

Call go functions from C

I am trying to create a static object written in Go to interface with a C program (say, a kernel module or something). I have found documentation on calling C functions from Go, but I haven't found ...
20
votes
14answers
2k views

What next generation low level language is the best bet to migrate the code base?

Let's say you have a company running a lot of C/C++, and you want to start planning migration to new technologies so you don't end up like COBOL companies 15 years ago. For now, C/C++ runs more than ...
19
votes
6answers
458 views

Algorithm for finding the color between two others - in the colorspace of painted colors

When mixing blue and yellow paint, the result is some sort of green. I have two rgb colors: blue = (0, 0, 255) and yellow = (255, 255, 0) What is the algorithm for finding the rgb color that is ...
18
votes
6answers
2k views

What are the advantages and disadvantages of Go programming language?

Not so long ago Google came out with this new programming language, which was said to be fast as C and intuitive and simple as python. I will not judge this assertions, but instead ask you: What do ...
18
votes
3answers
2k views

What can you do in 30 lines of Go? Can you create a useful, complete program that demonstrates its features?

So, the big buzz in the last few days is Go, the new language from Google. Assuming you're all obsessive programming language geeks like me, you've all downloaded it, built it, and run your "Hello, ...
17
votes
4answers
3k views

multi package makefile example for go

I'm trying to setup a multi package go project something like ./main.go ./subpackage1/sub1_1.go ./subpackage1/sub1_2.go ./subpackage2/sub2_1.go ./subpackage2/sub2_2.go where main.go imports both ...
17
votes
7answers
4k views

Go language benchmarks?

I see the claims that Go is supposed to be almost comparable in speed to C, but are there any benchmarks available yet?
17
votes
6answers
2k views

How to use C++ in Go?

In the new Go language, how do I call C++ code? In other words, how can I wrap my C++ classes and use them in Go?
15
votes
2answers
3k views

Go Language Compared to Python

I am interested in hearing the differences between Go and Python and reading an overview of the similarities. I know that Google has heavy usage of Python and Go looks to be a bit related. I was ...
14
votes
5answers
2k views

Current Go Language Projects

As many of you might know Google just released it's "Go Language" (http://golang.org) as an experimental language. Does anyone know of any projects that people have been "experimenting" with? Just ...
14
votes
3answers
944 views

What is the difference between Go's multithreading and pthread or Java Threads?

What is the difference between Go's multithreading approach and other approaches, such as pthread, boost::thread or Java Threads?
13
votes
5answers
325 views

How are message-passing concurrent languages better than shared-memory concurrent languages in practice

I've been a Java developer for many years but never had to deal too much with concurrency issues until I started doing Android development, and suddenly started finding "application not responding" ...
13
votes
1answer
917 views

How do I call C from Go using the “foreign function interface”

How do I use Go's "foreign function interface" to call out to a C function? This interface is mentioned on the FAQ, but I cannot see it mentioned elsewhere in the docs.
13
votes
1answer
2k views

Iterating over all the keys of a golang map

Is there a way to get a list of all the keys in a go language map? The number of elements is given by len(), but if I have a map like: m := map[string]string{ "key1":"val1", "key2":"val2" }; how ...
13
votes
3answers
3k views

How to efficiently concatenate strings in Go?

In Go, string is a primitive type, it's readonly, every manipulation to it will create a new string. So, if I want to concatenate strings many times without knowing the length of the resulting ...
12
votes
3answers
517 views

Doesn't the fact that Go and Java use User space thread mean that you can't really take advantage of multiple core?

We've been talking about threads in my operating system class a lot lately and one question has come to my mind. Since Go, (and Java) uses User-space thread instead of kernel threads, doesn't that ...
12
votes
3answers
451 views

Shared memory vs. Go channel communication

One of Go's slogans is Do not communicate by sharing memory; instead, share memory by communicating. I am wondering whether Go allows two different Go-compiled binaries running on the same machine to ...
11
votes
2answers
160 views

What does the '.' (dot or period) in a go import statement do?

In the Go tutorial, and most of the Go code I've looked at, packages are imported like this: import ( "fmt" "os" "launchpad.net/lpad" ... ) But in ...
11
votes
5answers
643 views

What is the point of slice type in go (language)

I have read this but still not fully aware of the advantage of slice against array.So I am expecting somebody in SO explain better than it and I am sure you can :)
11
votes
10answers
3k views

What do you use to write Go [closed]

I know its a bit too early, but I've been trying out Go (Google's Programming Language) and its kindof annoying to write code in gedit. So, my question: What do you use to experiment with Go?
11
votes
4answers
989 views

Embedding instead of inheritance in Go

What is your opinion of this design decision? What advantages does it have and what disadvantages? Links: Embedding description
10
votes
3answers
439 views

Resource usage of google Go vs Python and Java on Appengine

Will google Go use less resources than Python and Java on Appengine? Are the instance startup times for go faster than Java's and Python's startup times? Is the go program uploaded as binaries or ...
10
votes
5answers
1k views

Haskell's TypeClasses and Go's Interfaces

What are the similarities and the differences between Haskell's TypeClasses and Go's Interfaces? What are the relative merits / demerits of the two approaches?
10
votes
7answers
1k views

Is Google's “Go” language multi-value return statement an alternative to exceptions?

It seems to me Google's alternatives to exceptions are GO: multi-value return "return val, err;" GO, C++: nil checks (early return) GO, C++: "handle the damn error" (my term) C++: assert(expression) ...
10
votes
3answers
361 views

Pros and cons of Go rejecting unused dependencies

Google's new language Go tries to make dependencies management easier by explicitly requiring that all dependencies listed in a module actually be used. The compiler will reject a module that declares ...
10
votes
1answer
1k views

Interface 'go' with C libraries

How does one interface a 'go' program with a C library? I've been browsing go's source code but I still didn't figured it out. If someone has already done so, could you share, please? UPDATED: ...
10
votes
4answers
345 views

Go code contribution: license and patent implications?

I've been reviewing the contributions documentation for Google new language, and was curious about the idea of contributing a new package. It states that this should be included at the top of ...
9
votes
1answer
467 views

How can I emulate Go's channels with Haskell?

I recently started reading about the Go programming language and I found the channel variables a very appealing concept. Is it possible to emulate the same concept in Haskell? Maybe to have a data ...
9
votes
3answers
595 views

Is it possible to include inline assembly in Google Go code?

Is it possible to include inline assembly in Google Go code?
8
votes
2answers
272 views

Mixing python with a faster language for optimization in GAE

I'm a newbie in the Python and GAE world and I have a question. With Python the normal approach is to only optimize the code when needed, fixing the more urgent bottlenecks. And one of the ways to ...
8
votes
1answer
261 views

Cocoa bindings for the Go language

Is it possible to write Mac OS X/Cocoa applications in Google Go? Is there a Go-Obj-C bridge? (it seems to me that Obj-C dynamism would be a great fit for Golang's interfaces) Can I at least link ...
8
votes
2answers
194 views

making generic algorithms in go

I can't figure out a clean way to implement an algorithm that will work on any type. The following code will produce errors trying to convert a string or a typed slice into interfaces, and you can't ...
8
votes
4answers
946 views

what's the state of go language IDE support? [closed]

Can anyone share his experience working with go in one of the three java IDE giants -I mean eclipse, netbeans and JIdea -- there's a similar question here Is there an IDE for Go? but I think it's a ...
8
votes
2answers
3k views

Which GUI toolkit for Go language?

I'd like to learn go language and I want to rewrite a FOSS fractal program I did in Delphi many years ago. So to catch two birds with a stone, I need to choose a gui toolkit. I develop in Linux but ...
8
votes
1answer
874 views

Convert string to integer type in Go?

I'm trying to convert a string returned from flag.Arg(n) to an int. What is the idiomatic way to do this in Go?
8
votes
3answers
1k views

Using Google's Go Language to Write a Library for an iPhone App

I'm considering using Go as a low-level, performant language alternative to C/Objective-C to implement a library for an iPhone App. Could either of the Go compilers generate a library that could be ...
8
votes
6answers
10k views

Go IDE With GUI Design Support

I was taking a look on Go language, but I want to know if there is any IDE developed only for it, but that have a GUI design feature, as Visual Studio and Netbeans.

1 2 3 4 5 13