2 // declaration and initialization
12 assert (t
== "world");
15 s
= "hello" + "world";
16 assert (s
== "helloworld");
18 // equality and relational
20 assert (s
== "hello");
21 assert (s
!= "world");
24 assert (s
<= "hello");
26 assert (s
>= "hello");