mirror of
https://github.com/snoyberg/keter.git
synced 2024-12-15 01:23:09 +03:00
8 lines
143 B
Haskell
8 lines
143 B
Haskell
import Control.Concurrent
|
|
import Data.Time
|
|
|
|
main = do
|
|
now <- getCurrentTime
|
|
writeFile "process.txt" $ show now
|
|
threadDelay 1000000
|