------ art_2192_32821992.1228369490677
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Because puts("hi") yields nil, the second item never gets called:
puts "hi" and puts "bye" if true
I can work around it with these:
!puts "hi" and puts "bye" if true
puts "hi";puts "bye" if true
[puts("hi"), puts("bye")] if true
--But was hoping there was a more aesthetic one liner out there that can use
'and'..
Thanks in advance!!
------ art_2192_32821992.1228369490677--