Variables

Lesson 6
Author : Afrixi
Last Updated : November, 2017


Ruby - Programming Language
This course covers the basics of programming in Ruby. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

puts "There once was a man named " + character_name puts "He was " + character_age + " years old" puts "He really liked the name " + character_name puts "But didn't like being " + character_age

puts "There once was a man named " + character_name puts "He was " + character_age + " years old"

character_age = 80

puts "He really liked the name " + character_name puts "But didn't like being " + character_age