souplesse/app/Main.hs
Daniel Barlow a15346ae7a add Track.parseFile and call it from the main app
that's right, this is no longer a hello world app
2024-10-31 18:29:57 +00:00

11 lines
212 B
Haskell

module Main where
import Control.Exception
import Track(parseFile)
import Data.List as List
main :: IO ()
main = do
points <- Track.parseFile "track.gpx"
putStrLn ("loaded " ++ (show (List.length points)))