mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-25 12:42:02 +03:00
7 lines
195 B
Idris
7 lines
195 B
Idris
|
import System.Info
|
||
|
|
||
|
main : IO ()
|
||
|
main = do Just np <- getNProcessors
|
||
|
| Nothing => putStrLn "ERROR: Couldn't get number of processors!"
|
||
|
putStrLn $ (show np) ++ " processors"
|