|
|
| version 1.2, 2012/05/28 10:30:41 | version 1.4, 2015/02/20 02:39:20 |
|---|---|
| Line 3 | Line 3 |
| ^math:convert[F0000000](16;2) | ^math:convert[F0000000](16;2) |
| ^math:convert[-F0000000](16;2) | ^math:convert[-F0000000](16;2) |
| ^try_catch{ | ^try-catch{ |
| $d(^math:convert[100000000](16;2)) | $d(^math:convert[100000000](16;2)) |
| } | } |
| $d(2) | $d(2) |
| ^try_catch{ | ^try-catch{ |
| ^d.div(0) | ^d.div(0) |
| } | } |
| ^try_catch{ | ^try-catch{ |
| ^d.mod(0) | ^d.mod(0) |
| } | } |
| $s[011] | |
| test oct support disabled: ^s.int[] ^s.double[] | |
| $s[2] | $s[2] |
| $i(^s.int[]) | $i(^s.int[]) |
| ^try_catch{ | ^try-catch{ |
| ^i.div(0) | ^i.div(0) |
| } | } |
| ^try_catch{ | ^try-catch{ |
| ^i.mod(0) | ^i.mod(0) |
| } | } |
| $s[0x100000000] | $s[0x100000000] |
| $s as int: ^try_catch{ | $s as int: ^try-catch{ |
| ^s.int[] | ^s.int[] |
| } | } |
| $s as double: ^try_catch{ | $s as double: ^try-catch{ |
| ^s.double[] | ^s.double[] |
| } | } |
| Line 45 $s as int: ^s.int[] | Line 48 $s as int: ^s.int[] |
| $s[0x80000000] | $s[0x80000000] |
| $s as double: ^s.double[] | $s as double: ^s.double[] |
| as int: ^try_catch{ | as int: ^try-catch{ |
| ^s.int[] | ^s.int[] |
| } | } |
| @try_catch[code] | |
| ^try{ | |
| $code | |
| }{ | |
| $exception.handled(true) | |
| $result[Exception: $exception.source - $exception.comment] | |
| } |