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!

Building An Exponent Function

Lesson 24
Author : 🦒
Last Updated : November, 2017


Code

Copydef pow(base_num, pow_num)
     result = 1
     pow_num.times do |index|
          result = result * base_num
     end
     return result
end