The following example uses _lmargin. It sets wrap on and then changes the left margin and displays text:

_wrap=true // must be true for _lmargin
_lmargin=0
? "01234567890"
_lmargin=5
? "Changing the margin"
// produces:
// 01234567890
// Changing the margin