File tree Expand file tree Collapse file tree 1 file changed +66
-0
lines changed Expand file tree Collapse file tree 1 file changed +66
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,24 @@ decode("true\t");
22
22
decode ("true \n" );
23
23
decode ("true \r" );
24
24
25
+ // And so should the combination of both
26
+ decode (" true " );
27
+ decode (" true \t" );
28
+ decode (" true \n" );
29
+ decode (" true \r" );
30
+ decode ("\ttrue " );
31
+ decode ("\ttrue \t" );
32
+ decode ("\ttrue \n" );
33
+ decode ("\ttrue \r" );
34
+ decode ("\ntrue " );
35
+ decode ("\ntrue \t" );
36
+ decode ("\ntrue \n" );
37
+ decode ("\ntrue \r" );
38
+ decode ("\rtrue " );
39
+ decode ("\rtrue \t" );
40
+ decode ("\rtrue \n" );
41
+ decode ("\rtrue \r" );
42
+
25
43
echo "Done \n" ;
26
44
--EXPECT --
27
45
bool (true )
@@ -48,4 +66,52 @@ bool(false)
48
66
bool (true )
49
67
bool (false )
50
68
69
+ bool (true )
70
+ bool (false )
71
+
72
+ bool (true )
73
+ bool (false )
74
+
75
+ bool (true )
76
+ bool (false )
77
+
78
+ bool (true )
79
+ bool (false )
80
+
81
+ bool (true )
82
+ bool (false )
83
+
84
+ bool (true )
85
+ bool (false )
86
+
87
+ bool (true )
88
+ bool (false )
89
+
90
+ bool (true )
91
+ bool (false )
92
+
93
+ bool (true )
94
+ bool (false )
95
+
96
+ bool (true )
97
+ bool (false )
98
+
99
+ bool (true )
100
+ bool (false )
101
+
102
+ bool (true )
103
+ bool (false )
104
+
105
+ bool (true )
106
+ bool (false )
107
+
108
+ bool (true )
109
+ bool (false )
110
+
111
+ bool (true )
112
+ bool (false )
113
+
114
+ bool (true )
115
+ bool (false )
116
+
51
117
Done
You can’t perform that action at this time.
0 commit comments