diff options
Diffstat (limited to 'smalltalk.html.markdown')
| -rw-r--r-- | smalltalk.html.markdown | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/smalltalk.html.markdown b/smalltalk.html.markdown index d6d369cc..58dccae4 100644 --- a/smalltalk.html.markdown +++ b/smalltalk.html.markdown @@ -388,7 +388,7 @@ y := $A max: $B.  ```smalltalk  | b x y |  x := #Hello.                                      "symbol assignment" -y := 'String', 'Concatenation'.                   "symbol concatenation (result is string)" +y := #Symbol, #Concatenation.                     "symbol concatenation (result is string)"  b := x isEmpty.                                   "test if symbol is empty"  y := x size.                                      "string size"  y := x at: 2.                                     "char at location" | 
