Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def welcome(name,age)
- puts ("Welcome "+name+" Your age is "+age.to_s)
- end
- puts "Enter your name"
- n1=gets.chomp()
- puts "Enter your age"
- a1=gets.chomp()
- welcome(n1,a1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement