Prints detailed information about the account including account number, holder name, balance, and account type.
Examples
account <- BankAccount("ACC123", "John Doe", 1000)
get_account_info(account)
#> === Account Information ===
#> Account Number: ACC123
#> Account Holder: John Doe
#> Current Balance: $1000.00
#> Account Type: s7examples::BankAccount
#> ===========================