Skip to content

Instantly share code, notes, and snippets.

@jamiebullock
Last active January 31, 2021 12:23
Show Gist options
  • Save jamiebullock/df5a06096d98246fce96d315c2128df9 to your computer and use it in GitHub Desktop.
Save jamiebullock/df5a06096d98246fce96d315c2128df9 to your computer and use it in GitHub Desktop.
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