mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +03:00
0194539ef7
* [ new ] __LOC__, __FILE__, __LINE__, __COL__ magic debug strings * [ fix ] the point is to test whitespace being ignored * [ fix ] golden values
20 lines
243 B
Idris
20 lines
243 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__}
|
|
"""
|