It is very possible, and incredibly useful. There are two ways to have code within text, one is separating them by commas, such as this
Prompt A,B
Disp "A=",A,"B=",B
This works, and you get text on the right, with variables on the left.
The Other way is a bit more complicated, and uses the toString( command.
Here is an example, and I will work you through it.
Prompt A,B
Disp "A="+toString(A)+" B="+toString(B)
Lets say that you set A as 1 and B as 2. It will output A=1 B=2
This is a very useful when you want to display multiple pieces of information on the same line, or if you are limited to space.
Hope this Helps!
-Gabe