7 lines
149 B
Haskell
7 lines
149 B
Haskell
|
|
import System.Directory
|
||
|
|
import System.Time
|
||
|
|
|
||
|
|
do ct <- getModificationTime filename
|
||
|
|
cal <- toCalendarTime ct
|
||
|
|
putStrLn (calendarTimeToString cal)
|