Created
July 1, 2021 20:55
-
-
Save brailsmt/becf316da557389b1f7d4a49fccd3a17 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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