about summary refs log blame commit diff
path: root/scratch/groceries/export.hs
blob: c76033391d02873b7fa160471ed239976ccaf2e1 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                         
                            

                                                                     
module Main where

import Data.Function ((&))
import qualified Data.List as L

-- | Run this to export the grocery list.
main :: IO ()
main = do
  x <- readFile "./list.org"
  x & lines & filter (not . L.isPrefixOf "- 0x") & unlines & putStrLn
  pure ()