This is how you add something in the middle of text, you do +whatever$,
do
print "Whats your name?"
input a$
Print "I know your name its " +a$, " isnt it."
loop
if you wanted to add something at the begining use "a$+" heres an example and at the end just use the a$,
cls
do
print "Whats your fullname?"
input a$
print "How old are you?"
input b$
print "Whats you mums full name?"
input c$
Print a$+ " started having halucinations yesterday evening, he is " +b$, " years of age."
print "He went crazy in the school hall and killed at least 15 people including his mum " +c$,"."
Print" "
loop
and to make the input go to a certain place use:
Hope that helped