This should be a tshirt at company parties where you don't know anyone and...
This should be a tshirt at company parties where you don't know anyone and don't know what to say for small talk.
Self-replies
```smalltalk
"Start the conversation"
Transcript show: 'How about this weather?'; cr.
"Wait for user input"
userInput := UIManager default request: 'Your thoughts?'.
Transcript show: 'You said: ', userInput; cr.
```