| ▲ | petalmind 5 hours ago |
| Yeah, I was also going to say that conflating trivial syntax and "supremely easy to learn" is a very weak flex. The first Smalltalk-80 book you randomly find is 560 pages. Also, there is a weird bargaining with "but not block temporaries" and "not an instance variable". Why not? Half of the postcard is basically empty. Also, "except primitives" — how many primitives are there? |
|
| ▲ | Smalltalker-80 5 hours ago | parent | next [-] |
| The appeal of having a very simple, base syntax and almost everything in the library / primitives, would be that code is always easy to read and write, also on the 'reflection' level, where most languages have specific keywords that cannot be used 'first class' with the rest of the language. E.g: Types next to class objects or operator overloading, look at Swift..
(Of course the complexity of a full working system (library) does not disappear in Smalltalk, it's just easier to read and modify. :) |
| |
| ▲ | petalmind 5 hours ago | parent [-] | | > on the 'reflection' level, where most languages have specific keywords that cannot be used 'first class' with the rest of the language. In Ruby this is also the other way around, and it's one of my pet peeves. `Kernel#callcc` looks like a method (arguably, of a special class), yet it's impossible to re-implement directly in the language, as far as I can tell. Same with `raise`, I keep forgetting that it's not a keyword even. | | |
| ▲ | decasia 4 hours ago | parent [-] | | Yeah, I just discovered this and was also amazed. https://decasia.org/tech/2026/02/raise-not-a-reserved-word.h... This being said, I don't think there is any requirement technically that every core method can also be re-implemented in Ruby... There are so many methods that are just thin interfaces to something written in C, whether because they are touching VM internals, or for perf reasons, or because they make system calls or call external libraries. | | |
| ▲ | petalmind 4 hours ago | parent [-] | | You reimplement `while` in terms of `loop`, but do you know that `loop` is also a method :) |
|
|
|
|
| ▲ | amomchilov 5 hours ago | parent | prev [-] |
| Next up: “all the characters you need fit on a single keyboard!” |
| |