1) What is difference between string
and string literal
2) a book says 'zero' at: 1 put: $h
will fail because literals are immutable but if I do 'zero' copy at: 1 put: $h
works because copying a literal string produces another string which is not a literal. Confused!