This example displays a first and a last name using SET SPACE ON and then SET SPACE OFF:

Firstname="Rachel"
Lastname ="Jayes"
set space on // the default
? Firstname,Lastname
// Rachel Jayes
set space off
? Firstname,Lastname
// RachelJayes
// The two variables are not separated