mirror of
https://github.com/snoyberg/keter.git
synced 2025-01-07 15:07:14 +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
|