1
0
Fork 0
57-ruby-exercises/002_count_chars.rb

8 lines
207 B
Ruby
Raw Normal View History

2024-05-08 10:21:49 +00:00
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