x = "Hello, world!"puts x.tainted?y = [x, x, x]puts y.tainted?z = 20 + 50puts z.tainted?a = File.open("somefile").readlines.firstputs a.tainted?b = ENV["PATH"]puts b.tainted?c = [a, b]puts c.tainted?