I don't have Visual Works to check, but in IBM Smalltalk Tab
(note the case) is a tab character.
Maybe try this:
info := stringOne, Tab asString, stringTwo.
edit (re: your comment):
Okay, either Tab
is not the right name for a tab character, or your character class doesn't respond to asString
Try seeing what Tab class
gives you, if it answers "Character", then you just need to find out how to change a Character into a String in VisualWorks. If it doesn't answer "Character", then we haven't found the right name for tab characters in VisualWorks.
edit2:
I don't know the short way to turn a character into a string in Visual Works, so here is a solution that should work anyway. This is all that asString
would do anyway:
Since you'd probably want to use it multiple times, you can save it as a string,
tabString := String with: Tab.
info := stringOne, tabString, stringTwo