hledger/Account.hs
2008-10-02 23:55:01 +00:00

17 lines
288 B
Haskell

module Account
where
import Utils
import Types
import AccountName
import Amount
import LedgerEntry
import RawTransaction
import Transaction
instance Show Account where
show (Account a ts b) = printf "Account %s with %d transactions" a $ length ts
nullacct = Account "" [] nullamt