11 lines
152 B
Java
11 lines
152 B
Java
|
package testdata;
|
||
|
|
||
|
public class Basic {
|
||
|
|
||
|
String field = "this is a field";
|
||
|
|
||
|
String method() {
|
||
|
return "this is a method result";
|
||
|
}
|
||
|
}
|