1
0
Fork 0
57-ruby-exercises/004_char_length.rb

8 lines
207 B
Ruby

puts("Qual é a string?")
string = gets.chomp.to_s
unless string.empty?
puts("A string é '#{string}' e tem um comprimento de #{string.size} caracteres")
else
puts("Voce não introduziu uma string")
end