Cuis-What Strings are made of and how: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

4 May 2025

2 May 2025

  • curprev 23:1423:14, 2 May 2025Nmingott talk contribs 862 bytes +862 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