You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
int h_chain(int x) {
|
|
return x * 2;
|
|
}
|
|
|
|
namespace chns {
|
|
int chf3(int x);
|
|
|
|
int chf2(int x) {
|
|
return chf3(x);
|
|
}
|
|
|
|
class chcls {
|
|
public:
|
|
int chf4(int x);
|
|
};
|
|
|
|
int chcls::chf4(int x) {
|
|
return x * 3;
|
|
}
|
|
}
|