diff --git a/wikibooks-tutorial/strings.rb b/wikibooks-tutorial/strings.rb new file mode 100644 index 0000000..1970f2b --- /dev/null +++ b/wikibooks-tutorial/strings.rb @@ -0,0 +1,3 @@ +print "Enter name: " +name = gets.chomp +puts "Your name is #{name}"