Famous Quotes & Sayings

Smalltalk Quotes & Sayings

Enjoy reading and share 8 famous quotes about Smalltalk with everyone.

Share on Facebook Share on Twitter Share on Google+ Pinterest Share on Linkedin

Top Smalltalk Quotes

Smalltalk Quotes By Frank Muller

Go is no Erlang, Smalltalk or Scheme, nothing pure. But it works great and is fun! — Frank Muller

Smalltalk Quotes By David Chisnall

Go uses garbage collection (GC). Generally, people have one of two reactions to this. If you come from a high-level language, like Java, C#, Ruby, Python, or Smalltalk, then your reaction is likely to be "So what? It's a standard language feature these days." People coming from C or C++, in contrast, tend to regard GC as a decadent luxury and a sign of incompetence among programmers in general. Oh, and they also want you to get off their lawn. — David Chisnall

Smalltalk Quotes By Rupert Friend

I had a lot of anger against the way things 'should be done' - conforming to social norms, ticking boxes to gain acceptance. Frustration at the pointlessness and predictability of smalltalk. Oh and a lot of anger about tea, which the British seem to use to avoid actually saying anything. — Rupert Friend

Smalltalk Quotes By Steve McConnell

Programmers working with high-level languages achieve better productivity and quality than those working with lower-level languages. Languages such as C++, Java, Smalltalk, and Visual Basic have been credited with improving productivity, reliability, simplicity, and comprehensibility by factors of 5 to 15 over low-level languages such as assembly and C (Brooks 1987, Jones 1998, Boehm 2000). You save time when you don't need to have an awards ceremony every time a C statement does what it's supposed to. — Steve McConnell

Smalltalk Quotes By Bertrand Meyer

I think Smalltalk is inappropriate for serious industrial developments. After all, run time is a little late to find out whether you have a landing gear. — Bertrand Meyer

Smalltalk Quotes By Paul Graham

I suspect few housing projects in the US were designed by architects who expected to live in them. You see the same thing in programming languages. C, Lisp, and Smalltalk were created for their own designers to use. Cobol, Ada, and Javawere created for other people to use. If you think you're designing
something for idiots, odds are you're not designing something good, even for idiots. — Paul Graham

Smalltalk Quotes By Anonymous

OOP to me means only messaging, local retention and protection and hiding of state-process, and extreme late-binding of all things. It can be done in Smalltalk and in LISP. There are possibly other systems in which this is possible, but I'm not aware of them. — Anonymous

Smalltalk Quotes By Anonymous

Generative testing is an approach to testing software that was made popular by the QuickCheck library. Originally written in Haskell and since ported to several other programming languages (Ruby, Python, C, C++, Objective-C, Smalltalk, Java, JavaScript, Erlang, Scala, Clojure...), the QuickCheck library allows the developer to separate test logic from the generation of test cases. This means that, as developers, we can spend less time instructing the compiler how to test our code, and focus instead on what properties we expect our code to have. — Anonymous