mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 10:02:03 +03:00
22 lines
264 B
Idris
22 lines
264 B
Idris
main : IO ()
|
|
main = do
|
|
|
|
putStrLn "loc: \{__LOC__}"
|
|
|
|
putStrLn "file: \{__FILE__}"
|
|
|
|
putStrLn "line: \{__LINE__}"
|
|
|
|
putStrLn "col: \{__COL__}"
|
|
|
|
putStrLn
|
|
"""
|
|
loc further down the file: \{
|
|
|
|
|
|
|
|
__LOC__}
|
|
"""
|
|
|
|
putStrLn __FILE__
|