summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2009-05-09 11:08:40 +0000
committerAlberto Ruiz <aruiz@um.es>2009-05-09 11:08:40 +0000
commitedabccf9d9564573359ebf795f4ce9cce7b15816 (patch)
treee23e04713ff7ecf13cbb09d866989cdbe15c996b
parent38d7b765f024b1f1aa42daf8b94050e43383ebec (diff)
catching error example
-rw-r--r--examples/error.hs (renamed from examples/experiments/error.hs)6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/experiments/error.hs b/examples/error.hs
index 16305dc..f13a48e 100644
--- a/examples/experiments/error.hs
+++ b/examples/error.hs
@@ -1,10 +1,11 @@
1import Numeric.GSL 1import Numeric.GSL
2import Numeric.LinearAlgebra
2import Prelude hiding (catch) 3import Prelude hiding (catch)
3import Control.Exception 4import Control.Exception
4 5
5test x = catch 6test x = catch
6 (print x) 7 (print x)
7 (\e -> putStrLn $ "captured ["++ show e++"]") 8 (\e -> putStrLn $ "captured ["++ show (e :: SomeException) ++"]")
8 9
9main = do 10main = do
10 setErrorHandlerOff 11 setErrorHandlerOff
@@ -13,4 +14,7 @@ main = do
13 test $ 5 + (fst.exp_e) 1000 14 test $ 5 + (fst.exp_e) 1000
14 test $ bessel_zero_Jnu_e (-0.3) 2 15 test $ bessel_zero_Jnu_e (-0.3) 2
15 16
17 test $ (linearSolve 0 4 :: Matrix Double)
18 test $ (linearSolve 5 (sqrt (-1)) :: Matrix Double)
19
16 putStrLn "Bye" \ No newline at end of file 20 putStrLn "Bye" \ No newline at end of file