hledger/Account.hs
2007-07-04 09:28:07 +00:00

17 lines
284 B
Haskell

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