On Nov 6, 2011, at 4:04 AM, Toni Alatalo wrote:
> On Nov 6, 2011, at 2:15 AM, Greg Ewing wrote:
>>> Absolutely not sure it fits the bill... but have you had a look at go?
>>> http://golang.org/
>> I looked at it. My first impression was "this is ugly". I'm pretty
>> sure it's not the language I was talking about.
> No, that is indeed the google Go thing.
Ah, sorry - misread that earlier :p (you said 'I' whereas I thought you
referred to someone else talking about google's cool new lang, and you thinking
that something so ugly as what's behind that link wouldn't be that one .. was
tired)
I haven't realliy studied it, but also am not too convinced. Dunno, perhaps
should look more though if need compiled stuff.
~Toni
> Which they support on the app engine to have something faster than py, but
> nicer than c. But is somewhat close to c I guess.
>
> The fibonacci example is:
>
> package main
>
> // fib returns a function that returns
> // successive Fibonacci numbers.
> func fib() func() int {
> a, b := 0, 1
> return func() int {
> a, b = b, a+b
> return b
> }
> }
>
> func main() {
> f := fib()
> // Function calls are evaluated left-to-right.
> println(f(), f(), f(), f(), f())
> }
>
>> Greg
>
>
> ~Toni
>