mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-17 16:21:46 +03:00
10 lines
194 B
Idris
10 lines
194 B
Idris
module Issue1200
|
|
|
|
%default total
|
|
|
|
main : IO ()
|
|
main = traverse_ printLn $ do
|
|
f <- [(1/), log, sin, cos, tan, asin, acos, atan, sqrt, floor, ceiling]
|
|
x <- [-2,-1,-0.5,0,0.5,1,2]
|
|
pure (f x)
|