type_spec : <quoted_seq>
attr_dcl : | <quoted_seq>
class Person {
attribute int age;
attribute char firstname[];
void perform(in string, out float);
%C++{
virtual int f(int a, float b);
static int list_count;
%}
%Java{
int f(int a, float b) {
return a+(int)b;
}
static int list_count = 3;
%}
};