Hello! I am having problems with Shoes (shoesrb.com). I wish to create a
frontend for
the program attached. I have included a text version here:
puts “Diary Generator”
puts “Name:”
name = gets.chomp
puts “Yesterday’s date:”
n1 = gets.chomp
puts “Today’s date:”
n2 = gets.chomp
puts “Tommorow’s date:”
n3 = gets.chomp
puts “Yesterday’s weather:”
w1 = gets.chomp
puts “Today’s weather:”
w2 = gets.chomp
puts “Tommorow’s weather:”
w3 = gets.chomp
puts “Today’s activity:”
a1 = gets.chomp
puts “Yesterday’s activity:”
a2 = gets.chomp
puts “Tommorow’s activity:”
a3 = gets.chomp
puts “"
puts “Results”
puts "”
puts “Dear diary”
puts "The date is " + n2 + ". It is " + w2 + ". I will go to " + a2 +
“.”
puts "Yesterday’s date was " + n1 + ". It is " + w1 + ". I will go to "
- a1 + “.”
puts "Tommorow’s date is " + n3 + ". It is " + w3 + ". I will go to " +
a3 + “.”
puts name
Thanks for your support, Daniel M