Ruby From Beginning
Hello World
#!/usr/bin/ruby puts "Hello World!"
What is your name?
#!/usr/bin/ruby
print "What is your name? "
name = gets
puts "Your name is #{name}"
#!/usr/bin/ruby puts "Hello World!"
#!/usr/bin/ruby
print "What is your name? "
name = gets
puts "Your name is #{name}"