RosettaCodeData/Task/User-input-Text/Crystal/user-input-text.crystal

8 lines
109 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
puts "You entered: #{gets}"
begin
puts "You entered: #{gets.not_nil!.chomp.to_i}"
rescue ex
puts ex
end