I think (Algol) is richer, clearer and more expressive (than Go)
1–10 of 21 posts
Re: I think (Algol) is richer, clearer and more expressive (than Go)
#2Re: I think (Algol) is richer, clearer and more expressive (than Go)
#3 # loop in 'for' mode
for i from 1 to 10 do print(i) od
# ...and in 'while' mode
while i
Personally, I love LOOP; it's just so damn flexible and intuitive, even if there is something a little illicit about it. But no question it's as un-Lispy as you can get. How fitting that it turns out to have been embedded Algol all along.Re: I think (Algol) is richer, clearer and more expressive (than Go)
#4Re: I think (Algol) is richer, clearer and more expressive (than Go)
#5Re: I think (Algol) is richer, clearer and more expressive (than Go)
#6I had no idea how much of today's code carries ALGOL DNA.
Re: I think (Algol) is richer, clearer and more expressive (than Go)
#7This is silly. ALGOL did not have a garbage collector. Nor did it support threads as well as Go does. Nor did it have interfaces. I'd go on, but comparing Go to ALGOL 68 just isn't anything close to serious.
Re: I think (Algol) is richer, clearer and more expressive (than Go)
#8I had no idea how much of today's code carries ALGOL DNA.
And the reality is that these things haven't really changed much. Most of the changes that modern languages bring are in the way of directives to the compiler/interpreter.
Re: I think (Algol) is richer, clearer and more expressive (than Go)
#9Notice that the email points out all the different things you can do with ALGOL 68 compared to Go. If we were to compare all programming languages this way, wouldn't C++ be the best language ever?
Re: I think (Algol) is richer, clearer and more expressive (than Go)
#10This is silly. ALGOL did not have a garbage collector. Nor did it support threads as well as Go does. Nor did it have interfaces. I'd go on, but comparing Go to ALGOL 68 just isn't anything close to serious.
Maybe the features he highlighted are as important to some people as the features you highlight.