Untitled
unknown
haskell
2 years ago
458 B
9
Indexable
{-# LANGUAGE BlockArguments #-}
{-# LANGUAGE OverloadedStrings #-}
module Main (main) where
import Control.Monad
import Data.Time
import System.Cron
import Control.Concurrent
main :: IO ()
main =
forever do
now <- getCurrentTime
-- when (scheduleMatches schedule now) doWork
print (now, nextMatch schedule now)
putStrLn "Sleeping..."
threadDelay 1000000
where
doWork = putStrLn "Time to work"
schedule = everyMinute
Editor is loading...