Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 147 Bytes

create_input_in_ruby.md

File metadata and controls

10 lines (7 loc) · 147 Bytes

Tutorial on how to create user input in Ruby

#!/usr/bin/ruby
puts "Please enter input: "
input = gets

puts "Your input: " + input