1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
Test of pp_bool:
true
Test of pp_int (positive):
12345
Test of pp_int (negative):
-12345
Test of pp_int32 (positive):
12345l
Test of pp_int64 (negative):
-12345L
Test of pp_float (infinity):
inf
Test of pp_float (neg_infinity):
-inf
Test of pp_float (nan):
nan
Test of pp_float (pi):
3.14159265359
Test of pp_char (printable):
'a'
Test of pp_char (unprintable):
'\000'
Test of pp_string:
"Hello world"
Test of pp_string (long):
... (truncated)
Test of pp_bytes (empty):
""
Test of pp_bytes (long):
... (truncated)
Test of pp_option pp_int (positive):
Some 12345
Test of pp_option pp_int (negative):
Some (-12345)
Test of pp_result pp_int pp_string:
Ok (-12345)
Test of pp_result pp_int pp_string:
... (truncated)
Test of pp_pair pp_char pp_int:
('a', -12345)
Test of pp_list pp_int:
... (truncated)
Test of pp_list pp_int (long):
... (truncated)
Test of pp_seq pp_int:
... (truncated)
Test of pp_seq pp_int (long):
... (truncated)
Test of pp_array pp_int:
... (truncated)
Test of pp_array pp_int (long):
... (truncated)
Test of pp_record:
... (truncated)
Test of pp_fun_:
... (truncated)
|