> C> t = gets.chomp # -> happens to be 'Hello world'
> C> s = t.intern   # tainted
> 
> svg% ruby -e 't = "aa"; t.taint; p t.intern.tainted?'
> false
> svg% 

It was hypotetical example to show why I think it is a bad idea to
transmit taint with #intern.