``` let(name="Tim") in "Hello, {name}." # String interpolation "Hello, "+name+"." # String concatenation s.length # String length s.slice[2,10] # String slice (may fail) ```