summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJigyasa Grover <grover.jigyasa1@gmail.com>2023-12-14 06:58:19 -0800
committerGitHub <noreply@github.com>2023-12-14 15:58:19 +0100
commit0b4ef82c3171b3b91f661499f724a14dfc6121dc (patch)
tree13a706a42d16cd413f85089493725c7a4ce72672
parentbe771f6c2eacdc247ec32bd153cb7e23a689fee1 (diff)
[smalltalk/en]: Rectified code snippet and Updated contact info & disclaimer (#4112)
[smalltalk/en]: Rectified code snippet and Updated contact info & disclaimer
-rw-r--r--smalltalk.html.markdown7
1 files changed, 3 insertions, 4 deletions
diff --git a/smalltalk.html.markdown b/smalltalk.html.markdown
index d4016ecf..9c2e870e 100644
--- a/smalltalk.html.markdown
+++ b/smalltalk.html.markdown
@@ -2,16 +2,15 @@
language: Smalltalk
filename: smalltalk.st
contributors:
- - ["Jigyasa Grover", "https://github.com/jigyasa-grover"]
+ - ["Jigyasa Grover", "https://jigyasa-grover.github.io"]
- ["tim Rowledge", "tim@rowledge.org"]
---
+<blockquote>Every effort has been made in the preparation of this material to ensure the accuracy and completeness of the information presented. However, no guarantee is given nor responsibility taken for errors or omissions. In case of any error, questions or suggestions on reach out to me at <a href="https://jigyasa-grover.github.io" target="_blank">jigyasa-grover.github.io</a> or drop me an e-mail at <a href="mailto:grover.jigyasa1@gmail.com" target="_blank">grover[dot]jigyasa1[at]gmail.com</a>.</blockquote>
- Smalltalk is a fully object-oriented, dynamically typed, reflective programming language with no 'non-object' types.
- Smalltalk was created as the language to underpin the "new world" of computing exemplified by "human–computer symbiosis."
- It was designed and created in part for educational use, more so for constructionist learning, at the Learning Research Group (LRG) of Xerox PARC by Alan Kay, Dan Ingalls, Adele Goldberg, Ted Kaehler, Scott Wallace, and others during the 1970s.
-`Feedback highly appreciated! Reach me at [@jigyasa_grover](https://twitter.com/jigyasa_grover) or send me an e-mail at grover.jigyasa1@gmail.com.`
-
## The Basics
### Everything is an object
@@ -162,7 +161,7 @@ b := (x < 5) xor: (y > 1). "test if one true and other false"
b := 5 between: 3 and: 12. "between (inclusive)"
b := 123 isKindOf: Number. "test if object is class or subclass of"
b := 123 isMemberOf: SmallInteger. "test if object is type of class"
-b := 123 respondsTo: sqrt. "test if object responds to message"
+b := 123 respondsTo: #sqrt. "test if object responds to message"
b := x isNil. "test if object is nil"
b := x isZero. "test if number is zero"
b := x positive. "test if number is positive"