Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4e893d2a52cb0e3ac5a18c59adff1a05718127ec (plain) (blame)
1
2
3
4
5
6
7
8
9
package foo;

public class Echo
{
	public String echoString(String input)
	{
		return input;
	}
}

Back to the top