Option Explicit 'Script written by Russell Loveridge 'Script copyrighted by RAL:lapa.epfl.ch ' This file shows how to deal with text, and how to "build" text statements. Call MyName() Sub MyName() Dim strName : strName = Rhino.GetString("What is your first name: ") Dim strFamily : strFamily = Rhino.GetString("What is your last name: ") Rhino.print "my name is: " & strName & ", and my family name is:" & strFamily Rhino.print "my name is: " & strName & " " & strFamily ' Note the addition of the " " to produce the space between the first name and the last name. End Sub