factor/library/test/errors.factor

21 lines
344 B
Factor
Raw Normal View History

2004-08-16 21:11:27 -04:00
IN: scratchpad
USE: errors
USE: kernel
USE: namespaces
USE: stack
USE: test
2004-11-25 20:37:05 -05:00
USE: lists
2004-08-16 21:11:27 -04:00
[ f ] [ [ ] [ ] catch ] unit-test
[ 5 ] [ [ 5 throw ] [ ] catch ] unit-test
[ t ] [
[ "Hello" throw ] [ drop ] catch
global [ "error" get ] bind
"Hello" =
] unit-test
2004-11-25 20:37:05 -05:00
[ ] [ [ ] print-error ] unit-test
[ ] [ [ 2 car ] print-error ] unit-test