RosettaCodeData/Task/Thue-Morse/Ruby/thue-morse.rb
2023-07-01 13:44:08 -04:00

2 lines
48 B
Ruby

puts s = "0"
6.times{puts s << s.tr("01","10")}