11 lines
68 B
Plaintext
11 lines
68 B
Plaintext
|
|
||
|
class Vector{
|
||
|
|
||
|
id(x){
|
||
|
return id2(x);
|
||
|
}
|
||
|
|
||
|
id2(x){
|
||
|
return id(x);
|
||
|
}
|
||
|
}
|