16 lines
221 B
Java
16 lines
221 B
Java
package tgt;
|
|
|
|
public class SimpleClass004 {
|
|
public static int toInt(String s) {
|
|
return 256;
|
|
}
|
|
|
|
public static String fromInt(int i) {
|
|
return Integer.toString(i);
|
|
}
|
|
|
|
public static int getMe42() {
|
|
return 42;
|
|
}
|
|
}
|