1 static int barx = 'b' + 'a' + 'r';
2 
bar(int x)3 int bar (int x)
4 {
5   if (x)
6     return barx;
7   else
8     return 0;
9 }
10