Skip to content

Instantly share code, notes, and snippets.

@megabites2013
Created March 23, 2021 08:20
Show Gist options
  • Save megabites2013/b51ce7e8f5b4e77b18332cb578b0df98 to your computer and use it in GitHub Desktop.
Save megabites2013/b51ce7e8f5b4e77b18332cb578b0df98 to your computer and use it in GitHub Desktop.
def pow (baseNum, powNum)
result = 1
powNum.times do |index|
result = result * baseNum
end
return result
end
puts pow(2,3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment