11 lines
214 B
Plaintext
11 lines
214 B
Plaintext
public class MyClass {
|
|
public method(a: Int): String {
|
|
var res: String
|
|
|
|
if (a == 1) res = "one";
|
|
else if (a == 2) res = "two";
|
|
else res = "too many";
|
|
|
|
return res;
|
|
}
|
|
} |