go

Google Go : declare / initialize

I'm currently playing with Google Go. There's a lot of ways to declare and/or initialize variables. Can someone explains pros/cons of each way (samples, as far as i know, below) : var strArr0 *[10]string = new([10]string) var strArr1 = new([10]string) var strArr2 = make([]string,10) var strArr3 [10]string strArr4...

suitable languages for a semantic web project

Currently I am thinking and searching for the adequate programming languages for a project (more than one programming language will be used). Questions: Is there a big mistake presented in my list (other than my belief of go as a suitable language)? Any tipps before I start? project: opensource project with semantic web (including rdf/...

Possible to port gui functions with swig

I was wondering if it would be possible to port the gtk gui framework to go(the language) with the swig wrapper? Or am I just living in a fantasy world? ...

Writing Modules?

I've been searching Google up and down, but I can't find any documentations on Modules and how to write them. So, My question is, how do you write Modules in Go? ...