Last active
January 31, 2021 12:23
-
-
Save jamiebullock/df5a06096d98246fce96d315c2128df9 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
def print_balance(account) | |
printf "Debits: %10.2f\n", account.debits | |
printf "Credits: %10.2f\n", account.credits | |
if account.fees < 0 | |
printf "Fees: %10.2f-\n", -account.fees | |
else | |
printf "Fees: %10.2f\n", account.fees | |
end | |
printf " ———-\n" | |
if account.balance < 0 | |
printf "Balance: %10.2f-\n", -account.balance | |
else | |
printf "Balance: %10.2f\n", account.balance | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment