Skip to content

Instantly share code, notes, and snippets.

@brailsmt
Created July 1, 2021 20:55
Show Gist options
  • Save brailsmt/becf316da557389b1f7d4a49fccd3a17 to your computer and use it in GitHub Desktop.
Save brailsmt/becf316da557389b1f7d4a49fccd3a17 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# created: 2021-07-01 15:44:57 -0500
$starting_value=1
$ppc = 1.0132
$cm = 1.5
def ppc_first
value = $starting_value
(0..100).each { value *= $ppc }
(0..37).each { value *= $cm }
puts value
end
def cm_first
value = $starting_value
(0..37).each { value *= $cm }
(0..100).each { value *= $ppc }
puts value
end
ppc_first
cm_first
[20210701 15:52:48|username]$ ./gamma_test.rb
18479113.676401503
18479113.67640149
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment