hledger/examples/accountnames.hs
2011-08-20 20:19:21 +00:00

8 lines
221 B
Haskell

#!/usr/bin/env runhaskell
-- list the default journal's chart of accounts in --flat style
import Hledger
main = do
j <- myJournal
let l = journalToLedger nullfilterspec{empty=True} j
mapM_ putStrLn (accountnames l)