anyone know what the time complexity of the append function is?
Go version 1 is released
71–80 of 168 posts
Re: Go version 1 is released
#72[deleted]
Re: Go version 1 is released
#73Re: Go version 1 is released
#74Earlier quoted context omitted.
> I'm still wishing that we could embed Go into a multithreaded c application, just like we can with the JVM and Mono. I would like to use Go as a "scripting" language. What?
I believe the post is referring to something like http://docs.oracle.com/javase/7/docs/technotes/guides/jni/sp...
Re: Go version 1 is released
#75Re: Go version 1 is released
#76Well, they got (at least) one thing exactly right: Doing away with the "toolchain". Having one command that can figure out how to build your code, including downloading external dependencies, is really nice. Pity about the whole "not having generics" thing though.
Re: Go version 1 is released
#77Does Go support Win32 development?
Re: Go version 1 is released
#78"We're announcing Go version 1, or Go 1 for short" I foresee the next version being considered harmful.
Or they can label versions like sun, so that nobody will know for sure if they're using Go 2 or Go 1.2 or Go Enterprise Edition or Go Standard...
For root 2: Version 1, Version 1.4, Version 1.41, etc.
Re: Go version 1 is released
#79Well, they got (at least) one thing exactly right: Doing away with the "toolchain". Having one command that can figure out how to build your code, including downloading external dependencies, is really nice. Pity about the whole "not having generics" thing though.
With interfaces, it's pretty simple to replicate patterns like a Container or Channel , to borrow common Java syntax. Personally, I like how it forces you to think about parametricity whenever you want polymorphism, like most functional languages.
Of course, most of the functional language DO have generics, and full type inference to boot, also.
Re: Go version 1 is released
#80Does Go support Win32 development?