All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Cuis CookBook. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 23:14, 2 May 2025 Nmingott talk contribs created page Cuis-What Strings are made of and how (Created page with "* Strings Smalltalk and many other languages are a sequence of Characters. * A Character is typed in like this: $a class . "=> Character " $b class. "=> Character " * Therefore you can make a string converting strictly from a sequence of Characters as in #($h $e $l $l $o) as: String . "=> 'hello' " or also String newFrom: #($a $b $c). " 'abc' " * The most common way to type in a String literal is this one s1 _ 'hello world'. s1 class. " String "...") Tag: Visual edit